Create fat builds of static, dynamic & framework libraries if both iOS and simulator versions have been created from separate manual Xcode builds. Refactor scripts for creating fat libraries to reuse across projects. Add MVK_BUILT_PROD_DIR to replace use of BUILT_PRODUCTS_DIR in most scripts to allow flexibility across per-platform compilation.
11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export MVK_OS="iOS"
|
|
export MVK_OS_PROD_EXTN="iphoneos"
|
|
export MVK_SIM_PROD_EXTN="iphonesimulator"
|
|
|
|
. "${SRCROOT}/../Scripts/create_fat_libs.sh"
|
|
|