Add ExternalDependencies (Debug) scheme to ExternalDependencies Xcode project. Add --debug option to fetchDependencies script. Support Release, Debug & Latest directories in External/build directory. Enable DEPLOYMENT_POSTPROCESSING build setting when compiling SPIRV-Tools to avoid warning spam when building dylibs. Disable visibility warnings when building MoltenVKShaderConverter in Release mode from external libraries built in Debug mode. Always use -Xlinker -w option when creating dylibs to disable visibility warnings.
11 lines
216 B
Bash
Executable File
11 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export MVK_OS="macosx"
|
|
export MVK_UX_FWK="AppKit"
|
|
export MVK_MIN_OS_VERSION=${MACOSX_DEPLOYMENT_TARGET}
|
|
export MVK_IOSURFACE_FWK="-framework IOSurface"
|
|
|
|
. "${SRCROOT}/../Scripts/create_dylib.sh"
|