From 55c6fbd978d2d6922a2cd72c422ae8c581268721 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 4 Nov 2023 07:23:28 +0100 Subject: {CMakeLists.txt,src/service.c}: Make building against librda optional. --- CMakeLists.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index d278421..ba9f80a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ option(ENABLE_COVERAGE "Enable coverage reports (includes enabling all tests and option(ENABLE_WERROR "Treat all build warnings as errors" OFF) option(ENABLE_LOMIRI_FEATURES "Build with Lomiri-specific libraries, schemas and media" OFF) option(ENABLE_DEVICEINFO "Build with deviceinfo integration" OFF) +option(ENABLE_RDA "Build with RDA (remote desktop awareness) support" ON) if(ENABLE_COVERAGE) set(ENABLE_TESTS ON) @@ -73,7 +74,6 @@ set( gio-unix-2.0>=2.36 libnotify>=0.7.6 libayatana-common>=0.9.1 - rda ) if (ENABLE_LOMIRI_FEATURES) @@ -90,6 +90,17 @@ if (ENABLE_LOMIRI_FEATURES) ) endif () +if (ENABLE_RDA) + list ( + APPEND + SERVICE_DEPS + rda + ) + add_definitions ( + -DRDA_ENABLED + ) +endif () + pkg_check_modules (SERVICE_DEPS REQUIRED ${SERVICE_DEPS}) include_directories (SYSTEM ${SERVICE_DEPS_INCLUDE_DIRS}) -- cgit v1.2.3