sapphire/tools/install.sh

8 lines
88 B
Bash
Raw Normal View History

2022-07-19 13:11:24 +00:00
cd build
if [ "$1" == "" ]
then
cmake --install .
else
cmake --install . --prefix $1
fi