aboutsummaryrefslogtreecommitdiff
path: root/src/server/CMakeLists.txt
diff options
context:
space:
mode:
authorclick <none@none>2010-07-27 05:40:21 +0200
committerclick <none@none>2010-07-27 05:40:21 +0200
commitbfc6dec0728dddb531fbe003c741b784c7f02592 (patch)
tree8b1bf0eb4c89a296b2b0a5b239ec7400d4df13ab /src/server/CMakeLists.txt
parent2b9275424eadb0871ca951bc9e24a9a9987c9df7 (diff)
Cut away DO_*-parts from buildsystem and specific files checking for it.
--HG-- branch : trunk
Diffstat (limited to 'src/server/CMakeLists.txt')
-rw-r--r--src/server/CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/CMakeLists.txt b/src/server/CMakeLists.txt
index 5d9b3b2ef9f..6c7a27d61e0 100644
--- a/src/server/CMakeLists.txt
+++ b/src/server/CMakeLists.txt
@@ -8,22 +8,22 @@
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-if(DO_WORLDSERVER)
+if(WORLDSERVER)
add_subdirectory(shared)
add_subdirectory(game)
add_subdirectory(collision)
- if(DO_SCRIPTS)
+ if(SCRIPTS)
add_subdirectory(scripts)
endif()
add_subdirectory(worldserver)
else()
- if(DO_TOOLS)
+ if(TOOLS)
add_subdirectory(collision)
endif()
endif()
-if (DO_AUTHSERVER)
- if(NOT DO_WORLDSERVER)
+if (AUTHSERVER)
+ if(NOT WORLDSERVER)
add_subdirectory(shared)
endif()
add_subdirectory(authserver)