diff options
author | flaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-22 14:54:37 +0000 |
---|---|---|
committer | flaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-22 14:54:37 +0000 |
commit | a751e7ba146eee3694169b8087306c93732689e6 (patch) | |
tree | b355e7aa4ee2173100aaaa5e3e4390ce0dcf2fb8 /src/login | |
parent | bf373f6054e0e3dd3b32a7ded8a3ae697902cbe1 (diff) | |
download | hercules-a751e7ba146eee3694169b8087306c93732689e6.tar.gz hercules-a751e7ba146eee3694169b8087306c93732689e6.tar.bz2 hercules-a751e7ba146eee3694169b8087306c93732689e6.tar.xz hercules-a751e7ba146eee3694169b8087306c93732689e6.zip |
* CMake: Added options BUILD_TXT_SERVERS, BUILD_SQL_SERVERS, BUILD_MAPCACHE.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14921 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/sql/CMakeLists.txt | 6 | ||||
-rw-r--r-- | src/login/txt/CMakeLists.txt | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/src/login/sql/CMakeLists.txt b/src/login/sql/CMakeLists.txt index 153d9562f..f452823ec 100644 --- a/src/login/sql/CMakeLists.txt +++ b/src/login/sql/CMakeLists.txt @@ -2,7 +2,7 @@ # # login sql # -if( HAVE_common_sql ) +if( BUILD_SQL_SERVERS ) message( STATUS "Creating target login-server_sql" ) set( SQL_LOGIN_HEADERS "${SQL_LOGIN_SOURCE_DIR}/account.h" @@ -36,6 +36,4 @@ if( INSTALL_COMPONENT_RUNTIME ) endif( INSTALL_COMPONENT_RUNTIME ) set( TARGET_LIST ${TARGET_LIST} login-server_sql CACHE INTERNAL "" ) message( STATUS "Creating target login-server_sql - done" ) -else() -message( STATUS "Skipping target login-server_sql (requires common_sql)" ) -endif() +endif( BUILD_SQL_SERVERS ) diff --git a/src/login/txt/CMakeLists.txt b/src/login/txt/CMakeLists.txt index 75e055903..1df5b32a9 100644 --- a/src/login/txt/CMakeLists.txt +++ b/src/login/txt/CMakeLists.txt @@ -2,7 +2,7 @@ # # login txt # -if( HAVE_common_base ) +if( BUILD_TXT_SERVERS ) message( STATUS "Creating target login-server" ) set( TXT_LOGIN_HEADERS "${TXT_LOGIN_SOURCE_DIR}/account.h" @@ -36,6 +36,4 @@ if( INSTALL_COMPONENT_RUNTIME ) endif( INSTALL_COMPONENT_RUNTIME ) set( TARGET_LIST ${TARGET_LIST} login-server CACHE INTERNAL "" ) message( STATUS "Creating target login-server - done" ) -else() -message( STATUS "Skipping target login-server (requires common_base)" ) -endif() +endif( BUILD_TXT_SERVERS ) |