diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-03 11:23:54 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-03 11:23:54 +0100 |
commit | 75cf0b8e72aff7072c25ab015ce5c9c64eb3ecc5 (patch) | |
tree | dd459130f169a924db0637146d31ed20aaa10d74 /src/readme.md | |
parent | ed8534e2d150428bcbc4a6df8940323ae8db2925 (diff) | |
parent | 6aa8fdd04728b6a499f526de727514ae3d0490b4 (diff) |
Merge branch 'master' of https://github.com/lonkaars/crepe into wouter/events-poc
Diffstat (limited to 'src/readme.md')
-rw-r--r-- | src/readme.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/readme.md b/src/readme.md index a8ffc51..15fa6f3 100644 --- a/src/readme.md +++ b/src/readme.md @@ -8,27 +8,27 @@ Examples (using Ninja): ``` $ cmake -B build -G Ninja -$ ninja -C build +$ cmake --build build ``` Unit tests can be built by explicitly specifying the target `test_main` when running the build command: ``` -$ ninja -C build test_main +$ cmake --build build --target test_main ``` Each source file in the example/ folder corresponds to a CMake target as well (all examples can be built at once by specifying the `examples` target): ``` -$ ninja -C build audio_internal components_internal +$ cmake --build build --target audio_internal script ``` For installing crêpe system-wide after building (install must be run with elevated privileges): ``` -# ninja -C build install +# cmake --install build ``` |