summaryrefslogtreecommitdiff
path: root/assets/cpp/CMakeLists.txt
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-04 22:40:22 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-04 22:40:22 +1000
commite7398920468efa212e0c800767b7b2c41baca4f4 (patch)
treef7637f8ba70a9c14905d26ac08f975fe1f5407b3 /assets/cpp/CMakeLists.txt
parentplugin: add BeatTracker (diff)
downloadcaelestia-shell-e7398920468efa212e0c800767b7b2c41baca4f4.tar.gz
caelestia-shell-e7398920468efa212e0c800767b7b2c41baca4f4.tar.bz2
caelestia-shell-e7398920468efa212e0c800767b7b2c41baca4f4.zip
internal: remove beat-detector.cpp
Diffstat (limited to 'assets/cpp/CMakeLists.txt')
-rw-r--r--assets/cpp/CMakeLists.txt10
1 files changed, 0 insertions, 10 deletions
diff --git a/assets/cpp/CMakeLists.txt b/assets/cpp/CMakeLists.txt
index cfbf7b1..52fe17c 100644
--- a/assets/cpp/CMakeLists.txt
+++ b/assets/cpp/CMakeLists.txt
@@ -1,7 +1,3 @@
-find_package(PkgConfig REQUIRED)
-pkg_check_modules(PIPEWIRE REQUIRED libpipewire-0.3)
-pkg_check_modules(AUBIO REQUIRED aubio)
-
# Version
add_executable(version version.cpp)
target_compile_definitions(version PRIVATE
@@ -11,9 +7,3 @@ target_compile_definitions(version PRIVATE
DISTRIBUTOR="${DISTRIBUTOR}"
)
install(TARGETS version DESTINATION ${INSTALL_LIBDIR})
-
-# Beat detector
-add_executable(beat_detector beat-detector.cpp)
-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})