-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCMakeLists.txt
358 lines (286 loc) · 10.7 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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
cmake_minimum_required(VERSION 3.12)
project(Monica)
message(STATUS "-> Monica")
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O0")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0")
add_compile_definitions(CAPNPROTO_SERIALIZATION_SUPPORT)
set(CAPNPROTO_SERIALIZATION_SUPPORT 1)
#add_compile_definitions(INCLUDE_SR_SUPPORT)
#set(INCLUDE_SR_SUPPORT 1)
add_compile_definitions(NO_MYSQL)
add_compile_definitions(_USE_MATH_DEFINES)
set(MT_RUNTIME_LIB 1)
#set absolute filenames (to resolve .. in paths)
macro(set_absolute_path var_name path)
get_filename_component(toAbsPath ${path} ABSOLUTE)
set(${var_name} ${toAbsPath})
endmacro(set_absolute_path)
if (NOT TARGET capnp_schemas_lib)
message(STATUS "target: capnp_schemas_lib")
add_subdirectory(mas_cpp_misc/mas_capnproto_schemas/gen/c++ mas-infrastructure/capnproto_schemas)
endif ()
if (NOT TARGET common_lib)
message(STATUS "target: common_lib")
add_subdirectory(mas_cpp_misc/common common)
endif ()
if (NOT TARGET date_lib)
message(STATUS "target: date_lib")
add_subdirectory(mas_cpp_misc/tools/date tools/date)
endif ()
if (NOT TARGET helpers_lib)
message(STATUS "target: helpers_lib")
add_subdirectory(mas_cpp_misc/tools/helpers tools/helpers)
endif ()
if (NOT TARGET json11_lib)
message(STATUS "target: json11_lib")
add_subdirectory(mas_cpp_misc/json11 json11)
endif ()
#if (NOT TARGET toml_lib)
# message(STATUS "target: toml_lib")
# add_subdirectory(mas_cpp_misc/toml toml)
#endif ()
if (NOT TARGET debug_lib)
message(STATUS "target: debug_lib")
add_subdirectory(mas_cpp_misc/tools/debug tools/debug)
endif ()
if (NOT TARGET climate_file_io_lib)
message(STATUS "target: climate_file_io_lib")
add_subdirectory(mas_cpp_misc/climate/climate-file-io climate/climate-file-io)
endif ()
if (NOT TARGET soil_lib)
message(STATUS "target: soil_lib")
add_subdirectory(mas_cpp_misc/soil soil)
endif ()
if (NOT TARGET zeromq_lib)
message(STATUS "target: zeromq_lib")
add_subdirectory(mas_cpp_misc/zeromq zeromq)
endif ()
#define delete file from path
macro(remove_file list_name file_name)
get_filename_component(toAbsPath ${file_name} ABSOLUTE)
list(REMOVE_ITEM ${list_name} "${toAbsPath}")
endmacro(remove_file)
#define source_groups
macro(GroupSources curdir baseDir)
file(GLOB children RELATIVE ${baseDir}/${curdir} ${baseDir}/${curdir}/*)
foreach (child ${children})
if (IS_DIRECTORY ${baseDir}/${curdir}/${child})
GroupSources(${curdir}/${child} ${baseDir})
else ()
string(REPLACE "/" "\\" groupname ${curdir})
source_group(${groupname} FILES ${baseDir}/${curdir}/${child})
endif ()
endforeach ()
endmacro()
if (MSVC)
# disable security warnings in windows
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
# define MS Visual Studio toolset version
if (NOT DEFINED MSVC_TOOLSET_VERSION)
if (MSVC_VERSION GREATER_EQUAL 1930)
set(MSVC_TOOLSET_VERSION "") # leave unknown for future versions
elseif (MSVC_VERSION GREATER_EQUAL 1920)
set(MSVC_TOOLSET_VERSION 142) # VS 2019
elseif (MSVC_VERSION GREATER_EQUAL 1910)
set(MSVC_TOOLSET_VERSION 141) # VS 2017
elseif (MSVC_VERSION EQUAL 1900)
set(MSVC_TOOLSET_VERSION 14) # VS 2015
else ()
# we do not support older version
endif ()
endif ()
endif ()
# https://cmake.org/cmake/help/latest/prop_tgt/CXX_STANDARD.html
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
#set(CMAKE_CXX_STANDARD 14)
# setup the target group variable, used to group targets into folders in IDEs
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
include_directories("src")
message(STATUS "cmake_generator = ${CMAKE_GENERATOR}")
message(STATUS "size_of_void = ${CMAKE_SIZEOF_VOID_P}")
if (${CMAKE_SIZEOF_VOID_P} STREQUAL "4")
set(ARCH "x86")
elseif (${CMAKE_SIZEOF_VOID_P} STREQUAL "8")
set(ARCH "x64")
endif ()
link_directories($ENV{HOME}/lib)
find_package(Threads REQUIRED)
#find_package(unofficial-sodium CONFIG REQUIRED)
#find_package(PkgConfig REQUIRED)
#pkg_check_modules(tomlplusplus REQUIRED IMPORTED_TARGET tomlplusplus)
#define folder structure in vs solution corresponding to real folder structure
GroupSources("src" ${PROJECT_SOURCE_DIR})
GroupSources("util" ${PROJECT_SOURCE_DIR}/..)
#------------------------------------------------------------------------------
# create monica run static lib to compile code just once
add_library(monica_lib
src/core/crop.h
src/core/crop.cpp
src/core/crop-module.h
src/core/crop-module.cpp
src/core/monica-model.h
src/core/monica-model.cpp
src/core/monica-parameters.h
src/core/monica-parameters.cpp
src/core/O3-impact.h
src/core/O3-impact.cpp
src/core/photosynthesis-FvCB.h
src/core/photosynthesis-FvCB.cpp
src/core/soilcolumn.h
src/core/soilcolumn.cpp
src/core/soilmoisture.h
src/core/soilmoisture.cpp
src/core/frost-component.h
src/core/frost-component.cpp
src/core/snow-component.h
src/core/snow-component.cpp
src/core/soilorganic.h
src/core/soilorganic.cpp
src/core/soiltemperature.h
src/core/soiltemperature.cpp
src/core/soiltransport.h
src/core/soiltransport.cpp
src/core/voc-common.h
src/core/voc-guenther.h
src/core/voc-guenther.cpp
src/core/voc-jjv.h
src/core/voc-jjv.cpp
src/core/stics-nit-denit-n2o.h
src/core/stics-nit-denit-n2o.cpp
src/io/output.h
src/io/output.cpp
src/io/build-output.h
src/io/build-output.cpp
src/run/cultivation-method.h
src/run/cultivation-method.cpp
src/run/run-monica.h
src/run/run-monica.cpp
src/resource/version.h
src/resource/version_resource.rc
src/run/capnp-helper.h src/run/capnp-helper.cpp)
target_link_libraries(monica_lib
PUBLIC
${CMAKE_THREAD_LIBS_INIT}
${CMAKE_DL_LIBS}
capnp_schemas_lib
debug_lib
helpers_lib
date_lib
soil_lib
json11_lib
common_lib
climate_file_io_lib
)
#message(STATUS "json11_lib_interface_includes:")
#foreach(X ${json11_lib_interface_includes})
# message(STATUS ${X})
#endforeach()
target_include_directories(monica_lib
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/src
)
#message(STATUS "monica_lib_interface_includes:")
#get_target_property(monica_lib_interface_includes monica_lib INTERFACE_INCLUDE_DIRECTORIES)
#foreach(X ${monica_lib_interface_includes})
# message(STATUS ${X})
#endforeach()
#message(STATUS "monica_lib_includes:")
#get_target_property(monica_lib_includes monica_lib INCLUDE_DIRECTORIES)
#foreach(X ${monica_lib_includes})
# message(STATUS ${X})
#endforeach()
if (MSVC)
target_compile_options(monica_lib PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
# create monica run static lib to compile code just once
add_library(monica_run_lib
src/io/csv-format.h
src/io/csv-format.cpp
src/run/create-env-from-json-config.h
src/run/create-env-from-json-config.cpp
)
target_link_libraries(monica_run_lib monica_lib)
#target_include_directories(monica_run_lib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src)
if (MSVC)
target_compile_options(monica_run_lib PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
# create monica-run, the non-zeromq cli client, which runs monica locally
add_executable(monica-run src/run/monica-run-main.cpp)
target_link_libraries(monica-run monica_run_lib)
if (MSVC)
target_compile_options(monica-run PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
# create monica zmq proxy executable for forwarding jobs to monica-zmq-server
add_executable(monica-zmq-proxy src/run/monica-zmq-proxy-main.cpp)
target_link_libraries(monica-zmq-proxy
debug_lib
zeromq_lib
)
if (MSVC)
target_compile_options(monica-zmq-proxy PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
# create monica-zmq-server executable, the server running monica via zeromq requests
add_executable(monica-zmq-server
src/run/serve-monica-zmq.h
src/run/serve-monica-zmq.cpp
src/run/monica-zmq-server-main.cpp
)
target_link_libraries(monica-zmq-server
monica_lib
zeromq_lib
)
if (MSVC)
target_compile_options(monica-zmq-server PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
# create monica-capnp-server executable, the server running monica via CapNProto RPC
add_executable(monica-capnp-server
src/run/monica-capnp-server-main.cpp
src/run/run-monica-capnp.h
src/run/run-monica-capnp.cpp
)
target_link_libraries(monica-capnp-server monica_lib)
if (MSVC)
target_compile_options(monica-capnp-server PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
# create monica-capnp-proxy executable, a server forwarding monica CapNProto RPC requests to registered monica instances
add_executable(monica-capnp-proxy
src/run/monica-capnp-proxy-main.cpp
src/run/run-monica-capnp.h
src/run/run-monica-capnp.cpp
)
target_link_libraries(monica-capnp-proxy monica_lib)
if (MSVC)
target_compile_options(monica-capnp-proxy PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
# create monica-capnp-server executable, the server running monica via CapNProto RPC
add_executable(monica-capnp-fbp-component
src/run/monica-capnp-fbp-component-main.cpp
src/run/run-monica-capnp.h
src/run/run-monica-capnp.cpp
)
target_link_libraries(monica-capnp-fbp-component monica_lib)
if (MSVC)
target_compile_options(monica-capnp-fbp-component PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
add_executable(daily-monica-fbp-component-main
src/run/daily-monica-fbp-component-main.cpp
)
target_link_libraries(daily-monica-fbp-component-main
monica_lib
#PkgConfig::tomlplusplus
)
if (MSVC)
target_compile_options(daily-monica-fbp-component-main PRIVATE "/MT$<$<CONFIG:Debug>:d>")
endif ()
#------------------------------------------------------------------------------
message(STATUS "<- Monica")