skidjular/build.sh

9 lines
105 B
Bash
Executable File

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