diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 15:50:59 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 15:50:59 +0100 |
commit | 314354fda83f7f0e4ef11b13322e84997b4ccee0 (patch) | |
tree | aa94e76cc49145a7a1f7f10526555ef52a127029 /src | |
parent | 2d67cf09b80297d13f642afd7db13dba53ca2b9b (diff) |
update build commands in readme
Diffstat (limited to 'src')
-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 ``` |