summaryrefslogtreecommitdiff
path: root/src/tool
diff options
context:
space:
mode:
authorflaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-06 20:40:38 +0000
committerflaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-06 20:40:38 +0000
commit482beafefb9c50e5c1d3d16fd69b88cf2c9e84db (patch)
tree79b02817ddb47fc28e67aeb63fb1c1e29482d597 /src/tool
parent37377cfe2c7a46d23e44d0f67606c360008167b2 (diff)
downloadhercules-482beafefb9c50e5c1d3d16fd69b88cf2c9e84db.tar.gz
hercules-482beafefb9c50e5c1d3d16fd69b88cf2c9e84db.tar.bz2
hercules-482beafefb9c50e5c1d3d16fd69b88cf2c9e84db.tar.xz
hercules-482beafefb9c50e5c1d3d16fd69b88cf2c9e84db.zip
* CMake: src/common builds static libraries common_base/common_sql, that are used as dependencies by the other targets.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14889 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool')
-rw-r--r--src/tool/CMakeLists.txt34
1 files changed, 23 insertions, 11 deletions
diff --git a/src/tool/CMakeLists.txt b/src/tool/CMakeLists.txt
index 4f69174b9..e39b174dd 100644
--- a/src/tool/CMakeLists.txt
+++ b/src/tool/CMakeLists.txt
@@ -25,16 +25,25 @@ set( MAPCACHE_SOURCES
# mapcache
if( USE_ZLIB )
-message ( STATUS "Creating target mapcache" )
+message( STATUS "Creating target mapcache" )
+set( COMMON_HEADERS
+ ${COMMON_MINI_HEADERS}
+ "${COMMON_SOURCE_DIR}/grfio.h"
+ "${COMMON_SOURCE_DIR}/utils.h"
+ )
+set( COMMON_SOURCES
+ ${COMMON_MINI_SOURCES}
+ "${COMMON_SOURCE_DIR}/grfio.c"
+ "${COMMON_SOURCE_DIR}/utils.c"
+ )
+set( MAPCACHE_SOURCES
+ "${CMAKE_CURRENT_SOURCE_DIR}/mapcache.c"
+ )
set( LIBRARIES ${GLOBAL_LIBRARIES} ${ZLIB_LIBRARIES} )
-set( INCLUDE_DIRS ${GLOBAL_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS} ${COMMON_INCLUDE_DIRS} )
-set( DEFINITIONS ${GLOBAL_DEFINITIONS} MINICORE )
-if( WIN32 )
- list( APPEND LIBRARIES "oldnames.lib" "ws2_32.lib" )
- list( APPEND INCLUDE_DIRS ${MSINTTYPES_INCLUDE_DIRS} )
-endif()
-set( SOURCE_FILES ${COMMON_SOURCES} ${MAPCACHE_SOURCES} )
-source_group( common FILES ${COMMON_SOURCES} )
+set( INCLUDE_DIRS ${GLOBAL_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS} )
+set( DEFINITIONS ${GLOBAL_DEFINITIONS} ${COMMON_MINI_DEFINITIONS} )
+set( SOURCE_FILES ${COMMON_HEADERS} ${COMMON_SOURCES} ${MAPCACHE_SOURCES} )
+source_group( common FILES ${COMMON_HEADERS} ${COMMON_SOURCES} )
source_group( mapcache FILES ${MAPCACHE_SOURCES} )
add_executable( mapcache ${SOURCE_FILES} )
include_directories( ${INCLUDE_DIRS} )
@@ -45,7 +54,10 @@ if( INSTALL_RUN_DATA )
DESTINATION ${CMAKE_INSTALL_PREFIX}
COMPONENT "mapcache" )
endif()
-message ( STATUS "Creating target mapcache - done" )
+message( STATUS "Creating target mapcache - done" )
+set( HAVE_mapcache ON CACHE BOOL "mapcache target is available" )
+mark_as_advanced( HAVE_mapcache )
else()
-message ( STATUS "Skipping target mapcache (requires ZLIB)" )
+message( STATUS "Skipping target mapcache (requires ZLIB)" )
+unset( HAVE_mapcache CACHE )
endif()