diff options
author | click <none@none> | 2010-09-18 22:16:35 +0200 |
---|---|---|
committer | click <none@none> | 2010-09-18 22:16:35 +0200 |
commit | bf3abefd6a9a7aed1a0876bb39851871f564fbc5 (patch) | |
tree | db4e9b88545c79507a634151ce9b250e568a3dc4 | |
parent | b15ceaf83024acec37eeb9ce297b05de707af4b1 (diff) |
BuildSystem: Fix another typo *sighs*
--HG--
branch : trunk
-rw-r--r-- | dep/CMakeLists.txt | 6 |
1 files 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() |