diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-01 14:59:15 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-01 14:59:15 +1000 |
| commit | 7e5e19b6a5ea5d25718e0d4c530b193806d524b3 (patch) | |
| tree | 7b2ddc0530d45ecdf2087c27d845ff65cee226b9 /assets/cpp/CMakeLists.txt | |
| parent | plugin/fsm: lazy entriesChanged (diff) | |
| download | caelestia-shell-7e5e19b6a5ea5d25718e0d4c530b193806d524b3.tar.gz caelestia-shell-7e5e19b6a5ea5d25718e0d4c530b193806d524b3.tar.bz2 caelestia-shell-7e5e19b6a5ea5d25718e0d4c530b193806d524b3.zip | |
cmake: more compiler warnings
Diffstat (limited to 'assets/cpp/CMakeLists.txt')
| -rw-r--r-- | assets/cpp/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/cpp/CMakeLists.txt b/assets/cpp/CMakeLists.txt index 8e4532f..cfbf7b1 100644 --- a/assets/cpp/CMakeLists.txt +++ b/assets/cpp/CMakeLists.txt @@ -14,6 +14,6 @@ install(TARGETS version DESTINATION ${INSTALL_LIBDIR}) # Beat detector add_executable(beat_detector beat-detector.cpp) -target_include_directories(beat_detector PRIVATE ${PIPEWIRE_INCLUDE_DIRS} ${AUBIO_INCLUDE_DIRS}) +target_include_directories(beat_detector SYSTEM PRIVATE ${PIPEWIRE_INCLUDE_DIRS} ${AUBIO_INCLUDE_DIRS}) target_link_libraries(beat_detector PRIVATE ${PIPEWIRE_LIBRARIES} ${AUBIO_LIBRARIES}) install(TARGETS beat_detector DESTINATION ${INSTALL_LIBDIR}) |