ctf-tools/snowman/install

12 lines
231 B
Text
Raw Normal View History

2015-12-08 22:09:19 +00:00
#!/bin/bash -e
INST_DIR=$PWD
2016-08-24 13:21:47 +00:00
[ -e snowman ] || git clone --depth 1 https://github.com/yegord/snowman
cd snowman
2015-12-08 22:09:19 +00:00
mkdir build
cd build
cmake -D CMAKE_INSTALL_PREFIX=$INST_DIR ../src
cmake --build .
cmake --build . --target install