diff options
-rw-r--r-- | .gitlab-ci.yml | 5 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6e19fbc7..d539ecc9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,5 +23,6 @@ ubuntu-build: libsdl2-net-dev libsdl2-ttf-dev libxml2-dev - - cmake . - - cmake --build . + ninja-build + - cmake -G Ninja -B build . + - cmake --build build @@ -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 |