Log ext lib build steps to provide user feedback. Add package_ext_libs_finish.sh script to separate packaging libraries from building them, to avoid build database conflicts. Travis only build macOS ext libs.
13 lines
289 B
Bash
Executable File
13 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export MVK_EXT_LIB_DST_PATH="${PROJECT_DIR}/External/build/"
|
|
|
|
# Assign symlink to Latest
|
|
ln -sfn "${CONFIGURATION}" "${MVK_EXT_LIB_DST_PATH}/Latest"
|
|
|
|
# Clean MoltenVK to ensure the next MoltenVK build will use the latest external library versions.
|
|
make --quiet clean
|
|
|