skidjular/build.sh

9 lines
114 B
Bash
Executable File

#!/bin/sh
mkdir build
cd build
conan install .. --build missing
cmake -DCMAKE_BUILD_TYPE=Debug ..
make -j9
cd ..