move flake to own repository

This commit is contained in:
Swarsel 2023-12-11 02:57:34 +01:00
commit 84b5cd816c
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
55 changed files with 13637 additions and 0 deletions

5
scripts/devShell/benchmark Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
rm -rf build
cmake -S . -B build -D CMAKE_BUILD_TYPE=Release
cmake --build build --target benchmark
./build/benchmark/benchmark

5
scripts/devShell/compile Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
rm -rf build
cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug
cmake --build build --target all
ctest --test-dir build