skidjular/build.sh

9 lines
105 B
Bash
Raw Permalink Normal View History

2019-09-16 11:49:23 +00:00
#!/bin/sh
2020-04-05 11:54:23 +00:00
2019-09-16 11:49:23 +00:00
mkdir build
cd build
conan install .. --build=missing
cmake --config=Debug ..
2019-10-14 16:05:01 +00:00
make -j9
2019-09-16 11:49:23 +00:00
cd ..