mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
11 lines
231 B
Bash
Executable file
11 lines
231 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
INST_DIR=$PWD
|
|
|
|
[ -e snowman ] || git clone --depth 1 https://github.com/yegord/snowman
|
|
cd snowman
|
|
mkdir build
|
|
cd build
|
|
cmake -D CMAKE_INSTALL_PREFIX=$INST_DIR ../src
|
|
cmake --build .
|
|
cmake --build . --target install
|