summaryrefslogtreecommitdiff
path: root/plugin/src/Caelestia/CMakeLists.txt
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-08 21:10:30 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-08 21:10:30 +1000
commitd0fdbefbfb60994ad8d6cf3b7129dcdd556c1924 (patch)
tree5319ea868c554d470ab3c74d7ba4a28442fbeaff /plugin/src/Caelestia/CMakeLists.txt
parentdev: export cmake compile commands (diff)
downloadcaelestia-shell-d0fdbefbfb60994ad8d6cf3b7129dcdd556c1924.tar.gz
caelestia-shell-d0fdbefbfb60994ad8d6cf3b7129dcdd556c1924.tar.bz2
caelestia-shell-d0fdbefbfb60994ad8d6cf3b7129dcdd556c1924.zip
plugin/ap: fix collector
Actually read from speakers not mic
Diffstat (limited to 'plugin/src/Caelestia/CMakeLists.txt')
-rw-r--r--plugin/src/Caelestia/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugin/src/Caelestia/CMakeLists.txt b/plugin/src/Caelestia/CMakeLists.txt
index 3618eb8..bff65c5 100644
--- a/plugin/src/Caelestia/CMakeLists.txt
+++ b/plugin/src/Caelestia/CMakeLists.txt
@@ -1,5 +1,6 @@
find_package(PkgConfig REQUIRED)
pkg_check_modules(Qalculate IMPORTED_TARGET libqalculate REQUIRED)
+pkg_check_modules(Pipewire IMPORTED_TARGET libpipewire-0.3 REQUIRED)
pkg_check_modules(Aubio IMPORTED_TARGET aubio REQUIRED)
pkg_check_modules(Cava IMPORTED_TARGET cava REQUIRED)
@@ -14,6 +15,7 @@ qt_add_qml_module(caelestia
beattracker.hpp beattracker.cpp
service.hpp service.cpp
serviceref.hpp serviceref.cpp
+ audiocollector.hpp audiocollector.cpp
audioprovider.hpp audioprovider.cpp
cavaprovider.hpp cavaprovider.cpp
)
@@ -37,5 +39,5 @@ install(FILES "${module_typeinfo}" DESTINATION "${module_dir}")
target_link_libraries(caelestia PRIVATE
Qt::Core Qt::Qml Qt::Gui Qt::Concurrent Qt::Multimedia
- PkgConfig::Qalculate PkgConfig::Aubio PkgConfig::Cava
+ PkgConfig::Qalculate PkgConfig::Pipewire PkgConfig::Aubio PkgConfig::Cava
)