chore: add bootstrap, build and test scripts
This commit is contained in:
parent
3c193fc47b
commit
92dd9b38ee
3 changed files with 9 additions and 0 deletions
3
bootstrap.sh
Executable file
3
bootstrap.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
cmake -S . -B build -G Ninja -D CMAKE_EXPORT_COMPILE_COMMANDS=ON
|
3
build.sh
Executable file
3
build.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
cmake --build build
|
3
test.sh
Executable file
3
test.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
cmake --build build && cmake --build build --target test
|
Loading…
Reference in a new issue