moltenvk/Scripts/package_update_latest.sh
Bill Hollings 0ac1edbac0 Project build enhancements, and MoltenVKShaderConverter
tool now validates converted MSL with a test compilation.

Project build scripts now build dylib and framework in separate build directories
to enable MoltenVKShaderConverter to link to static library instead of dynamic library.
Final Package structure remains the same.
In Debug build, copy dylib dSYM files to Package.
Package/Latest directory now links relative to local Debug or Release directory.
Add install option to Makefile.
MoltenVKShaderConverter tool now validates converted MSL with a test compilation.
Clean up various MSL conversion and compilation error logging.
MVKCommandResourceFactory wrap Metal library compile with autorelease pool.
Build ExternalDependencies with same symbol hiding as MoltenVK to suppress visibility warnings.
Update What's New document.
2019-03-22 19:36:21 -04:00

10 lines
163 B
Bash
Executable File

#!/bin/bash
set -e
# Package folder
export MVK_PKG_PATH="${PROJECT_DIR}/Package"
# Assign symlink to Latest
ln -sfn "${CONFIGURATION}" "${MVK_PKG_PATH}/Latest"