From bf3abefd6a9a7aed1a0876bb39851871f564fbc5 Mon Sep 17 00:00:00 2001 From: click Date: Sat, 18 Sep 2010 22:16:35 +0200 Subject: [PATCH] BuildSystem: Fix another typo *sighs* --HG-- branch : trunk --- dep/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt index 2ebca2bf023..4b11eda2fdd 100644 --- a/dep/CMakeLists.txt +++ b/dep/CMakeLists.txt @@ -15,14 +15,14 @@ elseif( MSVC ) endif() if(CMAKE_SYSTEM_NAME MATCHES "Linux") - if(SERVER) + if(SERVERS) add_subdirectory(jemalloc) set(JEMALLOC_LIB "jemalloc") endif() endif() if(CMAKE_SYSTEM_NAME MATCHES "Windows") - if(SERVER) + if(SERVERS) add_subdirectory(acelite) if(USE_MYSQL_SOURCES) add_subdirectory(mysqllite) @@ -34,7 +34,7 @@ endif() add_subdirectory(g3dlite) -if(SERVER) +if(SERVERS) add_subdirectory(sockets) add_subdirectory(gsoap) endif()