From ff10a65c8edfc775541fa23f96aa052873d34000 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Sun, 22 Jan 2012 12:26:30 -0500 Subject: [PATCH] Change ENABLE_{CLIENT,SERVER} to WITH_{CLIENT,SERVER}. --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c306080c..6899c34af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -163,13 +163,13 @@ if(NOT WIN32) add_subdirectory(channels) endif() -option(ENABLE_CLIENT "Build client binaries" ON) -if(ENABLE_CLIENT) +option(WITH_CLIENT "Build client binaries" ON) +if(WITH_CLIENT) add_subdirectory(client) endif() -option(ENABLE_SERVER "Build server binaries" OFF) -if(ENABLE_SERVER) +option(WITH_SERVER "Build server binaries" OFF) +if(WITH_SERVER) add_subdirectory(server) endif()