diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 56f03b12..1c76344e 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -15,7 +15,7 @@ jobs: - name: build and install library run: | - cmake -H. -Bbuild + cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release sudo cmake --build build --target install rm -rf build diff --git a/CMakeLists.txt b/CMakeLists.txt index debba823..959499ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,7 @@ set_target_properties(Greeter PROPERTIES CXX_STANDARD 17) target_include_directories(Greeter PUBLIC $ - $ + $ ) # ---- Create an installable target ----