enable parallel build

This commit is contained in:
2026-02-19 22:05:07 +01:00
parent d7ed12f6f9
commit b873a1e9d7
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.cache .cache
cmake-build-debug cmake-build-debug
cmake-build-release cmake-build-release
/platform

View File

@ -247,7 +247,7 @@ rec {
cd $FLAKE_PROJECT_ROOT/cmake-build-${typeLower} cd $FLAKE_PROJECT_ROOT/cmake-build-${typeLower}
echo "Running cmake" echo "Running cmake"
cmake --build . cmake --build . -j$(nproc)
''; '';
buildDebug = mkBuildScript "Debug"; buildDebug = mkBuildScript "Debug";