generated from Riley/Conan-C
Initial commit
This commit is contained in:
commit
605a30e2f8
13 changed files with 240 additions and 0 deletions
12
build.sh
Normal file
12
build.sh
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
if [ "$1" = "debug" ]; then
|
||||
BUILD_TYPE=debug
|
||||
else
|
||||
BUILD_TYPE=release
|
||||
fi
|
||||
|
||||
conan install . --output-folder=build --build=missing
|
||||
cd build
|
||||
meson setup --native-file conan_meson_native.ini .. meson-src -Dbuildtype=$BUILD_TYPE
|
||||
meson compile -C meson-src
|
||||
./meson-src/main
|
||||
read -p "Press enter to continue..."
|
||||
Loading…
Add table
Add a link
Reference in a new issue