Adds a build script

This commit is contained in:
Ron Hough 2023-03-04 15:06:54 -06:00
parent e3800b3475
commit f3df4cc9c1
1 changed files with 12 additions and 0 deletions

12
build.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -e
set -x
conan install . --output-folder=build --build=missing
(
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release \
-DCLI11_DIR=$(pwd)
cmake --build .
)