From 82a4b859c30100c9f8f8f0a99db07651ee70cccc Mon Sep 17 00:00:00 2001 From: Andrew Nelless Date: Sat, 4 Feb 2017 03:15:51 +0000 Subject: [PATCH] Make it clear was BUILD_SERVICE does --- CMakeLists.txt | 2 +- src/cmd/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d30599f..7ddcfb0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -369,4 +369,4 @@ if (CONF_DOXYGEN) endif() -option(BUILD_SERVICE "Build synergyd" ON) +option(SYNERGY_BUILD_LEGACY_SERVICE "Build the legacy service (synergyd)" ON) diff --git a/src/cmd/CMakeLists.txt b/src/cmd/CMakeLists.txt index 6b6d07e4..450c8417 100644 --- a/src/cmd/CMakeLists.txt +++ b/src/cmd/CMakeLists.txt @@ -18,7 +18,7 @@ add_subdirectory(synergyc) add_subdirectory(synergys) add_subdirectory(syntool) -if (BUILD_SERVICE) +if (SYNERGY_BUILD_LEGACY_SERVICE) add_subdirectory(synergyd) -endif (BUILD_SERVICE) +endif (SYNERGY_BUILD_LEGACY_SERVICE)