diff options
author | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-12-14 04:04:32 +0700 |
---|---|---|
committer | Ratchanan Srirattanamet <ratchanan@ubports.com> | 2023-12-14 04:04:32 +0700 |
commit | 32f4db850f34668bf3c66e86f009bcb3a8c8374e (patch) | |
tree | 3d584c91307226b08c900699c14c317156e16e0b /src/CMakeLists.txt | |
parent | 3c0c8488f05430c7d2fc54009d928ffef36d1c61 (diff) | |
download | ayatana-indicator-display-32f4db850f34668bf3c66e86f009bcb3a8c8374e.tar.gz ayatana-indicator-display-32f4db850f34668bf3c66e86f009bcb3a8c8374e.tar.bz2 ayatana-indicator-display-32f4db850f34668bf3c66e86f009bcb3a8c8374e.zip |
Remove USB manager and corresponding tests
Since this is renamed, it has never worked correctly anyway. I've forked
this part of code as "adbd-approver" [1], so this part can now be
removed.
[1] https://gitlab.com/ubports/development/core/adbd-approver
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f0158ea..2788440 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -10,17 +10,6 @@ set (SERVICE_LIB_SOURCES service.cpp ) -if (ENABLE_LOMIRI_FEATURES) - list (APPEND - SERVICE_LIB_SOURCES - greeter.cpp - adbd-client.cpp - usb-manager.cpp - usb-monitor.cpp - usb-snap.cpp - ) -endif () - if (ENABLE_COLOR_TEMP) list (APPEND SERVICE_LIB_SOURCES @@ -30,10 +19,6 @@ endif () add_library (${SERVICE_LIB} STATIC ${SERVICE_LIB_SOURCES}) -if (ENABLE_LOMIRI_FEATURES) - target_link_libraries(${SERVICE_LIB} Qt5::Core) -endif () - add_executable( ${SERVICE_EXEC} main.cpp |