sapphire/tools/install.sh
2022-08-03 14:55:04 +00:00

9 lines
103 B
Bash
Executable File

#!/usr/bin/env sh
cd build
if [ -z "$1" ]
then
cmake --install .
else
cmake --install . --prefix $1
fi