mirror of
https://github.com/italicsjenga/juce-cmake-toolchains.git
synced 2024-12-23 15:11:31 +11:00
7 lines
235 B
Bash
Executable file
7 lines
235 B
Bash
Executable file
if [ -z $1 ]; then
|
|
echo "No toolchain specified!"
|
|
return
|
|
fi
|
|
cd source
|
|
cmake -B cmake-build-install-$1 -DCMAKE_INSTALL_PREFIX=../$1 -DCMAKE_TOOLCHAIN_FILE=../toolchain-$1.cmake && cmake --build cmake-build-install-$1 --target install
|