8 lines
88 B
Bash
8 lines
88 B
Bash
|
cd build
|
||
|
|
||
|
if [ "$1" == "" ]
|
||
|
then
|
||
|
cmake --install .
|
||
|
else
|
||
|
cmake --install . --prefix $1
|
||
|
fi
|