Adds a build script

This commit is contained in:
2023-03-04 15:06:54 -06:00
parent e3800b3475
commit f3df4cc9c1
Executable
+12
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 .
)