summaryrefslogtreecommitdiff
path: root/src/txt-converter/char/CMakeLists.txt
blob: dab0df76a8463581009fe6f7b9f39eda67e260a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# char-converter
#
if( WITH_MYSQL )
message( STATUS "Creating target char-converter" )
set( COMMON_HEADERS
	${COMMON_MINI_HEADERS}
	"${COMMON_SOURCE_DIR}/mapindex.h"
	"${COMMON_SOURCE_DIR}/sql.h"
	"${COMMON_SOURCE_DIR}/timer.h"
	)
set( COMMON_SOURCES
	${COMMON_MINI_SOURCES}
	"${COMMON_SOURCE_DIR}/mapindex.c"
	"${COMMON_SOURCE_DIR}/sql.c"
	"${COMMON_SOURCE_DIR}/timer.c"
	)
set( TXT_HEADERS
	"${TXT_CHAR_SOURCE_DIR}/char.h"
	"${TXT_CHAR_SOURCE_DIR}/int_pet.h"
	"${TXT_CHAR_SOURCE_DIR}/int_storage.h"
	"${TXT_CHAR_SOURCE_DIR}/inter.h"
	"${TXT_CHAR_SOURCE_DIR}/int_party.h"
	"${TXT_CHAR_SOURCE_DIR}/int_guild.h"
	)
set( TXT_SOURCES
	"${TXT_CHAR_SOURCE_DIR}/char.c"
	"${TXT_CHAR_SOURCE_DIR}/int_pet.c"
	"${TXT_CHAR_SOURCE_DIR}/int_storage.c"
	"${TXT_CHAR_SOURCE_DIR}/inter.c"
	"${TXT_CHAR_SOURCE_DIR}/int_party.c"
	"${TXT_CHAR_SOURCE_DIR}/int_guild.c"
	)
set( SQL_HEADERS
	"${SQL_CHAR_SOURCE_DIR}/char.h"
	"${SQL_CHAR_SOURCE_DIR}/int_pet.h"
	"${SQL_CHAR_SOURCE_DIR}/int_storage.h"
	"${SQL_CHAR_SOURCE_DIR}/inter.h"
	"${SQL_CHAR_SOURCE_DIR}/int_party.h"
	"${SQL_CHAR_SOURCE_DIR}/int_guild.h"
	"${SQL_CHAR_SOURCE_DIR}/int_mercenary.h"
	)
set( SQL_SOURCES
	"${SQL_CHAR_SOURCE_DIR}/char.c"
	"${SQL_CHAR_SOURCE_DIR}/int_pet.c"
	"${SQL_CHAR_SOURCE_DIR}/int_storage.c"
	"${SQL_CHAR_SOURCE_DIR}/inter.c"
	"${SQL_CHAR_SOURCE_DIR}/int_party.c"
	"${SQL_CHAR_SOURCE_DIR}/int_guild.c"
	"${SQL_CHAR_SOURCE_DIR}/int_mercenary.c"
	)
set( CONVERTER_SOURCES
	"${CONVERTER_SOURCE_DIR}/char-converter.c"
	)
set( LIBRARIES ${GLOBAL_LIBRARIES} ${MYSQL_LIBRARIES} )
set( INCLUDE_DIRS ${GLOBAL_INCLUDE_DIRS} ${MYSQL_INCLUDE_DIRS} )
set( DEFINITIONS ${GLOBAL_DEFINITIONS} ${COMMON_MINI_DEFINITIONS} TXT_SQL_CONVERT )
set( SOURCE_FILES ${COMMON_HEADERS} ${COMMON_SOURCES} ${TXT_HEADERS} ${TXT_SOURCES} ${SQL_HEADERS} ${SQL_SOURCES} ${CONVERTER_SOURCES} )
source_group( common FILES ${COMMON_HEADERS} ${COMMON_SOURCES} )
source_group( txt FILES ${TXT_HEADERS} ${TXT_SOURCES} )
source_group( sql FILES ${SQL_HEADERS} ${SQL_SOURCES} )
source_group( converter FILES ${CONVERTER_SOURCES} )
include_directories( ${INCLUDE_DIRS} )
add_executable( char-converter ${SOURCE_FILES} )
target_link_libraries( char-converter ${LIBRARIES} )
set_target_properties( char-converter PROPERTIES COMPILE_DEFINITIONS "${DEFINITIONS}" )
if( WITH_COMPONENT_RUNTIME )
	cpack_add_component( Runtime_charconverter DESCRIPTION "char-converter" DISPLAY_NAME "char-converter" GROUP Runtime )
	install( TARGETS char-converter
		DESTINATION "tools"
		COMPONENT Runtime_charconverter )
endif()
set( HAVE_char-converter ON  CACHE BOOL "char-converter target is available" )
mark_as_advanced( HAVE_char-converter )
set( TARGET_LIST ${TARGET_LIST} char-converter  CACHE INTERNAL "" )
message( STATUS "Creating target char-converter - done" )
else()
message( STATUS "Skipping target char-converter (requires MYSQL)" )
unset( HAVE_char-converter CACHE )
endif()