forked from USTC-GCL-F/AMMesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
312 lines (249 loc) · 6.98 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
cmake_minimum_required(VERSION 3.5)
project(ACAM_mesh)
#设置不生成MinSizeRel;RelWithDebInfo
set(CMAKE_CONFIGURATION_TYPES "Debug;Release")
#path
SET(EIGEN_PATH "D:/LIBRARY/Eigen")
############################################################
# Create a library
############################################################
#Generate the static library from the library sources
add_library(ACAM_mesh STATIC
src/IOManger.cpp
src/PolyMesh.cpp
src/PolyMesh_Base.cpp
src/PolyMeshIterators.cpp
)
#SET(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib) #设置库文件的输出目录
target_include_directories(ACAM_mesh
PUBLIC
${PROJECT_SOURCE_DIR}/include
)
############################################################
# Create an executable
############################################################
# Add an executable with the above sources
add_executable(ACAM_example
src/main.cpp
)
# link the new ACAM_example target with the ACAM_mesh target
target_link_libraries( ACAM_example
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 1
############################################################
file (GLOB HW1_FILE
src/hw1/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW1 ${HW1_FILE})
target_include_directories(${PROJECT_NAME}_HW1
PRIVATE
${PROJECT_SOURCE_DIR}/include
)
target_link_libraries(${PROJECT_NAME}_HW1
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 2
############################################################
file (GLOB HW2_FILE
src/hw2/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW2 ${HW2_FILE})
target_include_directories(${PROJECT_NAME}_HW2
PRIVATE
${PROJECT_SOURCE_DIR}/include
)
target_link_libraries(${PROJECT_NAME}_HW2
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 3
############################################################
file (GLOB HW3_FILE
src/hw3/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW3 ${HW3_FILE})
target_include_directories(${PROJECT_NAME}_HW3
PRIVATE
${PROJECT_SOURCE_DIR}/include
)
target_link_libraries(${PROJECT_NAME}_HW3
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 4
############################################################
file (GLOB HW4_FILE
src/hw4/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW4 ${HW4_FILE})
target_include_directories(${PROJECT_NAME}_HW4
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW4
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 5
############################################################
file (GLOB HW5_FILE
src/hw5/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW5 ${HW5_FILE})
target_include_directories(${PROJECT_NAME}_HW5
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW5
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 6
############################################################
file (GLOB HW6_FILE
src/hw6/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW6 ${HW6_FILE})
target_include_directories(${PROJECT_NAME}_HW6
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW6
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 7
############################################################
file (GLOB HW7_FILE
src/hw7/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW7 ${HW7_FILE})
target_include_directories(${PROJECT_NAME}_HW7
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW7
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 8
############################################################
file (GLOB HW8_FILE
src/hw8/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW8 ${HW8_FILE})
target_include_directories(${PROJECT_NAME}_HW8
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW8
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 9
############################################################
file (GLOB HW9_FILE
src/hw9/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW9 ${HW9_FILE})
target_include_directories(${PROJECT_NAME}_HW9
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW9
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 10
############################################################
file (GLOB HW10_FILE
src/hw10/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW10 ${HW10_FILE})
target_include_directories(${PROJECT_NAME}_HW10
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW10
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 11
############################################################
file (GLOB HW11_FILE
src/hw11/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW11 ${HW11_FILE})
target_include_directories(${PROJECT_NAME}_HW11
PRIVATE
${PROJECT_SOURCE_DIR}/include
)
target_link_libraries(${PROJECT_NAME}_HW11
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 12
############################################################
file (GLOB HW12_FILE
src/hw12/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW12 ${HW12_FILE})
target_include_directories(${PROJECT_NAME}_HW12
PRIVATE
${PROJECT_SOURCE_DIR}/include
)
target_link_libraries(${PROJECT_NAME}_HW12
PRIVATE
ACAM_mesh
)
############################################################
# Project Homework 13
############################################################
file (GLOB HW13_FILE
src/hw13/*.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME}_HW13 ${HW13_FILE})
target_include_directories(${PROJECT_NAME}_HW13
PRIVATE
${PROJECT_SOURCE_DIR}/include
${EIGEN_PATH}
)
target_link_libraries(${PROJECT_NAME}_HW13
PRIVATE
ACAM_mesh
)