The fetchDependencies script puts build files in External/build directory. Xcode puts build files in standard Library/.../DerivedData directory. Copy compiled external static library files to External/build/iOS & External/build/macOS regardless of location of intermediates.
8 lines
136 B
Bash
Executable File
8 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export MVK_OS="iOS"
|
|
export MVK_BUILT_PROD_PATH="${BUILT_PRODUCTS_DIR}-iphoneos"
|
|
|
|
"${SRCROOT}/Scripts/package_ext_libs.sh"
|
|
|