Support creation of static library and build framework and dynamic library from it. Add Makefile to better support command line or script building integration. Update demos to each use one of framework, static library, and dynamic library. Refactor and rename the build scripts. Refactor and rename the Xcode Schemes. Update build and runtime documentation. Update What's New document.
11 lines
304 B
Bash
Executable File
11 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export MVK_PROD_NAME="MoltenVKShaderConverter"
|
|
export MVK_PKG_PROD_PATH_OS="${PROJECT_DIR}/Package/${CONFIGURATION}/${MVK_PROD_NAME}/Tools"
|
|
|
|
rm -rf "${MVK_PKG_PROD_PATH_OS}"
|
|
mkdir -p "${MVK_PKG_PROD_PATH_OS}"
|
|
cp -a "${MVK_BUILT_PROD_PATH}/${MVK_PROD_NAME}" "${MVK_PKG_PROD_PATH_OS}"
|