diff options
author | Arseniy-Movshev <dodoradio@outlook.com> | 2023-07-12 12:53:34 +0100 |
---|---|---|
committer | Arseniy-Movshev <dodoradio@outlook.com> | 2023-07-12 17:13:50 +0100 |
commit | 179fa87cd578f54409ea22071342fd2967bbf966 (patch) | |
tree | 593bc8175394d1b4246b2fbe465b8c82a973a4c3 | |
parent | 640efc352c6540db9e00f4124b9eac611cfce2fe (diff) |
Remove leftover qtpositioning reference
This was used in testing versions of sensorlogd but got removed, so let's remove it from compilation chain as well
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | daemon/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 881247f..c04ce73 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ include(AsteroidCMakeSettings) include(AsteroidCMakeSettings) -find_package(Qt5 COMPONENTS Core DBus Qml Positioning Sensors REQUIRED) +find_package(Qt5 COMPONENTS Core DBus Qml Sensors REQUIRED) add_subdirectory(daemon) add_subdirectory(qmlplugin) diff --git a/daemon/CMakeLists.txt b/daemon/CMakeLists.txt index b76527c..996f9f8 100644 --- a/daemon/CMakeLists.txt +++ b/daemon/CMakeLists.txt @@ -11,7 +11,7 @@ add_executable(sensorlogd ) set_target_properties(sensorlogd PROPERTIES AUTOMOC ON) #add_compile_definitions(Q_DECLARE_PRIVATE_SUPPORTS_UNIQUE_PTR=${Q_DECLARE_PRIVATE_SUPPORTS_UNIQUE_PTR}) -target_link_libraries(sensorlogd PRIVATE Qt5::Core Qt5::DBus Qt5::Qml Qt5::Positioning Qt5::Sensors) +target_link_libraries(sensorlogd PRIVATE Qt5::Core Qt5::DBus Qt5::Qml Qt5::Sensors) install(TARGETS sensorlogd DESTINATION bin) install(FILES systemd/asteroid-sensorlogd.service DESTINATION /usr/lib/systemd/user) |