juce-cmake-toolchains/build.sh

11 lines
335 B
Bash
Raw Permalink Normal View History

2022-07-22 13:30:53 +10:00
if [ -z $1 ]; then
echo "No toolchain specified!"
2022-07-22 16:59:43 +10:00
exit
fi
if [ ! -f toolchain-$1.cmake ]; then
echo "file doesntnt exist!"
exit
2022-07-22 13:30:53 +10:00
fi
cd source
2022-07-22 16:59:43 +10:00
cmake -B build-install-$1 -DCMAKE_INSTALL_PREFIX=../$1 -DCMAKE_TOOLCHAIN_FILE=../toolchain-$1.cmake && echo "--- Finished configuring ---" && cmake --build build-install-$1 --target install