Add install cmake/make target

This commit is contained in:
2024-07-22 22:01:33 +02:00
parent 248a511972
commit ab12622009
2 changed files with 12 additions and 1 deletions

View File

@@ -9,6 +9,9 @@ build:
@cmake -B build_release -S . -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTING=OFF -DENABLE_SAMPLE=ON
@cmake --build build_release -j 8
install:
@cmake --build build_release --target install -j 8
test:
@if [ -d build_debug ]; then rm -fr build_debug; fi
@mkdir build_debug