diff options
author | flaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-01 15:43:58 +0000 |
---|---|---|
committer | flaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-01 15:43:58 +0000 |
commit | 0361920446e9311979b5187abf123ba8e055d944 (patch) | |
tree | 02d41953674d66ae58e0a5fae453f218b7934ae2 /src/char/CMakeLists.txt | |
parent | 1c39635e7f5788b4777ee9f07d45b2228edeb899 (diff) | |
download | hercules-0361920446e9311979b5187abf123ba8e055d944.tar.gz hercules-0361920446e9311979b5187abf123ba8e055d944.tar.bz2 hercules-0361920446e9311979b5187abf123ba8e055d944.tar.xz hercules-0361920446e9311979b5187abf123ba8e055d944.zip |
* CMake: marked executables as different components and other miscellaneous changes. [FlavioJS]
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14877 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char/CMakeLists.txt')
-rw-r--r-- | src/char/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/char/CMakeLists.txt b/src/char/CMakeLists.txt index 666070532..5c2d66c3c 100644 --- a/src/char/CMakeLists.txt +++ b/src/char/CMakeLists.txt @@ -1,5 +1,7 @@ +# # setup +# set( MT19937AR_SOURCES # "${MT19937AR_SOURCE_DIR}/mt19937ar.c" ) @@ -33,7 +35,9 @@ set( CHAR_SOURCES ) +# # char txt +# if( USE_ZLIB ) message ( STATUS "Creating target char-server" ) set( LIBRARIES ${GLOBAL_LIBRARIES} ${ZLIB_LIBRARIES} ) @@ -56,7 +60,9 @@ add_executable( char-server ${SOURCE_FILES} ) target_link_libraries( char-server ${LIBRARIES} ) set_target_properties( char-server PROPERTIES COMPILE_DEFINITIONS "${DEFINITIONS}" ) if( INSTALL_RUN_DATA ) - install( TARGETS char-server DESTINATION ${CMAKE_INSTALL_PREFIX} ) + install( TARGETS char-server + DESTINATION ${CMAKE_INSTALL_PREFIX} + COMPONENT "char-server" ) endif() message ( STATUS "Creating target char-server - done" ) else() |