diff options
author | click <none@none> | 2010-07-29 21:08:16 +0200 |
---|---|---|
committer | click <none@none> | 2010-07-29 21:08:16 +0200 |
commit | f213f2c7d9bdafece27e198ba0bdf74ec258ede6 (patch) | |
tree | 4c46a3fa9fa19dde856c399a25c959b1bda74c6f /src/server/CMakeLists.txt | |
parent | c44b601ac78c429c7e4800c50b19c257dae0aefb (diff) |
Buildsystem/CMake: Include core/script headerfiles in generated MSVC-projects.
- Still "work in progress", as in missing filters and MSVC folder layouts.
- external libraries not fully "headerified" (not really required)
--HG--
branch : trunk
Diffstat (limited to 'src/server/CMakeLists.txt')
-rw-r--r-- | src/server/CMakeLists.txt | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/server/CMakeLists.txt b/src/server/CMakeLists.txt index 6c7a27d61e0..cf0c9f5ca72 100644 --- a/src/server/CMakeLists.txt +++ b/src/server/CMakeLists.txt @@ -8,23 +8,16 @@ # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -if(WORLDSERVER) +if( SERVERS ) add_subdirectory(shared) add_subdirectory(game) add_subdirectory(collision) - if(SCRIPTS) + add_subdirectory(authserver) + if( SCRIPTS ) add_subdirectory(scripts) endif() add_subdirectory(worldserver) -else() - if(TOOLS) - add_subdirectory(collision) - endif() endif() - -if (AUTHSERVER) - if(NOT WORLDSERVER) - add_subdirectory(shared) - endif() - add_subdirectory(authserver) +if( TOOLS ) + add_subdirectory(collision) endif() |