diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-03-04 20:31:08 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-03-04 20:03:31 +0000 |
commit | a9df89bda908e3b3d443db7f3ca865b6f12c75e5 (patch) | |
tree | ada951b04db6a0026ca43fb17b666426a10a9d63 /README.md | |
parent | 5c7f9d1d216fd1edca231ed274ac3077cb34909f (diff) | |
download | mana-a9df89bda908e3b3d443db7f3ca865b6f12c75e5.tar.gz mana-a9df89bda908e3b3d443db7f3ca865b6f12c75e5.tar.bz2 mana-a9df89bda908e3b3d443db7f3ca865b6f12c75e5.tar.xz mana-a9df89bda908e3b3d443db7f3ca865b6f12c75e5.zip |
CI: Use Ninja to speed up compile times
Ninja should automatically run the appropriate amount of parallel jobs.
Also removed the --parallel from the README.md, since the default
generator (Unix Makefiles) is not smart about this and risks locking up
people's systems because the many compile jobs can make it run out of
memory.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ Installing the dependencies on Fedora: Once the dependencies are installed, use CMake: cmake -B build . - cmake --build build --parallel + cmake --build build This produces an executable in `build/src/mana`. If running it without installing, be sure to run it from the repository root so that it can find its |