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
129 B
Bash
Executable File
8 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export MVK_OS="macOS"
|
|
export MVK_BUILT_PROD_PATH="${BUILT_PRODUCTS_DIR}"
|
|
|
|
"${SRCROOT}/Scripts/package_ext_libs.sh"
|
|
|