-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCMakeLists.txt
178 lines (157 loc) · 4.5 KB
/
CMakeLists.txt
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# MaNGOS is a full featured server for World of Warcraft, supporting
# the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8
#
# Copyright (C) 2005-2023 MaNGOS <https://getmangos.eu>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# Used for install targets
set(TOOLS_DIR "tools")
set(EXTRACTOR_BINARIES_DIR "${CMAKE_SOURCE_DIR}/src/tools/Extractor_Binaries")
set(SHARED_SRCS
shared/ExtractorCommon.cpp
shared/ExtractorCommon.h
)
#=======================================================#
#map-extractor
#=======================================================#
add_executable(map-extractor
map-extractor/System.cpp
map-extractor/dbcfile.cpp
${SHARED_SRCS}
$<$<BOOL:${WIN32}>:map-extractor/map-extractor.rc>
)
target_include_directories(map-extractor
PUBLIC
shared
map-extractor
)
target_link_libraries(map-extractor
PUBLIC
loadlib
)
install(
TARGETS map-extractor
DESTINATION "${BIN_DIR}/${TOOLS_DIR}"
)
if(WIN32 AND MSVC)
install(
FILES $<TARGET_PDB_FILE:map-extractor>
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
OPTIONAL)
endif()
#=======================================================#
#vmap-extractor
#=======================================================#
add_executable(vmap-extractor
vmap-extractor/adtfile.cpp
vmap-extractor/adtfile.h
vmap-extractor/dbcfile.cpp
vmap-extractor/dbcfile.h
vmap-extractor/assembler.cpp
vmap-extractor/model.cpp
vmap-extractor/model.h
vmap-extractor/modelheaders.h
vmap-extractor/vec3d.h
vmap-extractor/vmapexport.cpp
vmap-extractor/vmapexport.h
vmap-extractor/wdtfile.cpp
vmap-extractor/wdtfile.h
vmap-extractor/wmo.cpp
vmap-extractor/wmo.h
${SHARED_SRCS}
$<$<BOOL:${WIN32}>:vmap-extractor/vmap-extractor.rc>
)
target_include_directories(vmap-extractor
PUBLIC
shared
vmap-extractor
)
target_link_libraries(vmap-extractor
PUBLIC
loadlib
vmap2
)
install(
TARGETS vmap-extractor
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
)
if(WIN32 AND MSVC)
install(
FILES $<TARGET_PDB_FILE:vmap-extractor>
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
OPTIONAL
)
endif()
#=======================================================#
#mmap-extractor
#=======================================================#
add_executable(mmap-extractor
Movemap-Generator/generator.cpp
Movemap-Generator/IntermediateValues.cpp
Movemap-Generator/IntermediateValues.h
Movemap-Generator/MangosMap.h
Movemap-Generator/MapBuilder.cpp
Movemap-Generator/MapBuilder.h
Movemap-Generator/MMapCommon.h
Movemap-Generator/TerrainBuilder.cpp
Movemap-Generator/TerrainBuilder.h
Movemap-Generator/TileMsgBlock.h
Movemap-Generator/TileThreadPool.cpp
Movemap-Generator/TileThreadPool.h
Movemap-Generator/VMapExtensions.cpp
shared/ExtractorCommon.cpp
shared/ExtractorCommon.h
$<$<BOOL:${WIN32}>:Movemap-Generator/Movemap-Generator.rc>
)
target_include_directories(mmap-extractor
PUBLIC
shared
Movemap-Generator
)
target_link_libraries(mmap-extractor
PUBLIC
loadlib
vmap2
shared
RecastNavigation::Recast
Threads::Threads
${OPENSSL_LIBRARIES}
#if (defined(OPENSSL_VERSION_MAJOR) && OPENSSL_VERSION_MAJOR >= 3)
OpenSSL::Crypto
#endif()
)
install(
TARGETS mmap-extractor
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
)
install (
FILES "${EXTRACTOR_BINARIES_DIR}/MoveMapGen.sh"
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
)
install (
FILES "${EXTRACTOR_BINARIES_DIR}/offmesh.txt"
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
)
install (
FILES "${EXTRACTOR_BINARIES_DIR}/mmap_excluded.txt"
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
)
if(WIN32 AND MSVC)
install(
FILES $<TARGET_PDB_FILE:mmap-extractor>
DESTINATION ${BIN_DIR}/${TOOLS_DIR}
OPTIONAL
)
endif()