summaryrefslogtreecommitdiff
path: root/3rdparty
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 /3rdparty
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 '3rdparty')
-rw-r--r--3rdparty/msinttypes/CMakeLists.txt1
-rw-r--r--3rdparty/mt19937ar/CMakeLists.txt7
2 files changed, 8 insertions, 0 deletions
diff --git a/3rdparty/msinttypes/CMakeLists.txt b/3rdparty/msinttypes/CMakeLists.txt
index acf17f5b4..f17c6f596 100644
--- a/3rdparty/msinttypes/CMakeLists.txt
+++ b/3rdparty/msinttypes/CMakeLists.txt
@@ -4,4 +4,5 @@ find_path( MSINTTYPES_INCLUDE_DIRS "inttypes.h"
PATHS "${CMAKE_CURRENT_SOURCE_DIR}/include"
NO_DEFAULT_PATH )
mark_as_advanced( MSINTTYPES_INCLUDE_DIRS )
+set( GLOBAL_INCLUDE_DIRS ${GLOBAL_INCLUDE_DIRS} ${MSINTTYPES_INCLUDE_DIRS} CACHE INTERNAL "" )
endif()
diff --git a/3rdparty/mt19937ar/CMakeLists.txt b/3rdparty/mt19937ar/CMakeLists.txt
index 46f155b41..08eff5790 100644
--- a/3rdparty/mt19937ar/CMakeLists.txt
+++ b/3rdparty/mt19937ar/CMakeLists.txt
@@ -7,3 +7,10 @@ find_path( MT19937AR_SOURCE_DIR "mt19937ar.c"
NO_DEFAULT_PATH )
mark_as_advanced( MT19937AR_INCLUDE_DIRS )
mark_as_advanced( MT19937AR_SOURCE_DIR )
+
+set( MT19937AR_HEADERS
+ "${CMAKE_CURRENT_SOURCE_DIR}/mt19937ar.h"
+ CACHE INTERNAL "mt19937ar headers" )
+set( MT19937AR_SOURCES
+ "${CMAKE_CURRENT_SOURCE_DIR}/mt19937ar.c"
+ CACHE INTERNAL "mt19937ar sources" )