sapphire/tools/install.sh

9 lines
103 B
Bash
Raw Normal View History

2022-08-03 14:55:04 +00:00
#!/usr/bin/env sh
2022-07-19 13:11:24 +00:00
cd build
2022-08-03 14:55:04 +00:00
if [ -z "$1" ]
2022-07-19 13:11:24 +00:00
then
cmake --install .
else
cmake --install . --prefix $1
fi