skidjular/buildRelease.sh

9 lines
150 B
Bash
Raw Normal View History

2019-09-16 11:49:23 +00:00
#!/bin/sh
mkdir build
cd build
2020-03-11 08:46:58 +00:00
conan install .. --build missing
cmake -DCMAKE_CXX_COMPILER=/usr/bin/g++ -DCMAKE_BUILD_TYPE=Release ..
2019-10-14 16:05:01 +00:00
make -j9
2019-09-16 11:49:23 +00:00
cd ..