forked from ecmwf/magics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
337 lines (254 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
############################################################################################
# cmake options:
#
# -DCMAKE_BUILD_TYPE=Debug|RelWithDebInfo|Release|Production
#
# -DCMAKE_MODULE_PATH=/path/to/ecbuild/cmake
#
# -DCMAKE_C_COMPILER=gcc
#
# -DCMAKE_PREFIX_PATH=/path/to/jasper:/path/to/any/package/out/of/place
#
cmake_minimum_required( VERSION 3.12 FATAL_ERROR )
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild/cmake")
find_package( ecbuild 3.4 REQUIRED )
project( magics VERSION 4.10.0 LANGUAGES CXX )
# make sure that the header files are installed into include/magics
# note that this needs to be done before ecbuild_declare_project()
# to ensure that the ecbuild header files are also put there
# note also that we need to CACHE this so that ecbuild_declare_project() does not overwrite it
set(INSTALL_INCLUDE_DIR include/magics CACHE PATH "Magics installation directory for header files")
include(ecbuild_system NO_POLICY_SCOPE)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_C_STANDARD 99)
###############################################################################
# some build options for this project
ecbuild_add_option( FEATURE CAIRO
DEFAULT ON
DESCRIPTION "cairo support[png/jpeg]"
REQUIRED_PACKAGES PangoCairo)
ecbuild_add_option( FEATURE DOCUMENTATION
DEFAULT OFF
DESCRIPTION "Adding support for automatic documentation"
)
string(STRIP "${PANGOCAIRO_LIBRARIES}" PANGOCAIRO_LIBRARIES)
if(PANGOCAIRO_FOUND)
set(HAVE_CAIRO ON)
ecbuild_enable_feature( CAIRO )
endif()
ecbuild_add_option( FEATURE GEOTIFF
DEFAULT OFF
DESCRIPTION "geotiff support [implies cairo] - work on progress"
CONDITION HAVE_CAIRO
REQUIRED_PACKAGES GeoTIFF )
ecbuild_add_option( FEATURE NETCDF
DEFAULT ON
DESCRIPTION "enable netcdf support"
REQUIRED_PACKAGES "NetCDF 4 COMPONENTS C" )
ecbuild_add_option( FEATURE ODB
DEFAULT OFF
DESCRIPTION "ODB support - to be deprecated"
REQUIRED_PACKAGES "odc" )
ecbuild_add_option( FEATURE METVIEW
DEFAULT OFF
DESCRIPTION "enable Metview interface" )
ecbuild_add_option( FEATURE METVIEW_NO_QT
DEFAULT OFF
DESCRIPTION "enable Metview interface without Qt" )
ecbuild_add_option( FEATURE EFAS
DEFAULT OFF
DESCRIPTION "enable EFAS coastlines and catchments" )
set( MAGICS_NAME "Magics" )
set( MAGICS_INSTALL_PATH ${CMAKE_INSTALL_PREFIX} )
###############################################################################
### Metview and Qt
ecbuild_info("TESTING for Metview and Qt ...")
if(HAVE_METVIEW AND HAVE_METVIEW_NO_QT)
ecbuild_critical("Do not set both HAVE_METVIEW and HAVE_METVIEW_NO_QT - only set one. You may have to remove your CMakeCache.txt to clear these settings.")
endif()
set( qt no )
set( metview no )
if( HAVE_METVIEW_NO_QT )
set( metview yes )
unset(MAGICS_ONLY)
endif()
if( HAVE_METVIEW )
set ( metview yes)
ecbuild_info("TESTING for Qt6 ...")
unset(MAGICS_ONLY)
find_package(Qt6Widgets)
if( Qt6Widgets_FOUND )
ecbuild_info("Qt6 was found ... ${Qt6Widgets_VERSION_STRING}")
include_directories(${Qt6Widgets_INCLUDE_DIRS})
set( MAGICS_QT 1)
set( MAGICS_QT6 1)
set( qt yes)
else()
find_package(Qt5Widgets REQUIRED)
if( Qt5Widgets_FOUND )
ecbuild_info("Qt5 was found ... ${Qt5Widgets_VERSION_STRING}")
include_directories(${Qt5Widgets_INCLUDE_DIRS})
set( MAGICS_QT 1)
set( MAGICS_QT5 1)
set( qt yes)
else()
ecbuild_critical("Neither Qt5 nor Qt6 were found ...")
endif()
endif()
endif()
ecbuild_declare_project()
###############################################################################
# find extra packages
ecbuild_find_package( NAME eccodes VERSION 2.19.0 REQUIRED
FAILURE_MSG "ecCodes is required in order to build Magics" )
set( HAVE_GRIB 1 )
set( HAVE_BUFR 1 )
# adding NO_MODULE means that if we don't find it, CMake will not generate
# strange error messages about not being able to find the FindProj4.cmake file.
# this should find proj if it has been installed via CMake, but if it has been
# installed via autotools, then we will need to try another method
#ecbuild_find_package(NAME PROJ4 VERSION 6.1.0 QUIET )
# find_package( PROJ4 6.1.0 NO_MODULE )
# if(NOT PROJ4_FOUND)
find_package(PROJ 6.1.0 REQUIRED)
if (NOT PROJ_FOUND)
message(FATAL_ERROR "Package 'proj' was not found - at least version 6.1.0 required.")
endif()
message("PROJ include: ${PROJ_INCLUDE_DIR}")
message("PROJ library: ${PROJ_LIBRARIES}")
list( APPEND MAGICS_PRIVATE_INCLUDE_DIRS ${PROJ_INCLUDE_DIR})
# endif()
find_package( EXPAT REQUIRED ) # for MagML
if(APPLE)
find_package( zlib REQUIRED ) # dependency of minizip - KMZ support
endif(APPLE)
### check support for DL library
#
# code taken from eckit (src/eckit/CMakeList.txt)
#
if( NOT EC_OS_NAME MATCHES "windows" )
check_include_files( dlfcn.h magics_HAVE_DLFCN_H )
if(NOT magics_HAVE_DLFCN_H)
message(FATAL_ERROR "Magics requires dlfcn.h for supporting the detection of the shared folder")
endif()
cmake_push_check_state(RESET)
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_DL_LIBS} )
check_c_source_compiles( "#define _GNU_SOURCE\n#include <dlfcn.h>\nint main(){ void* addr; Dl_info info; dladdr(addr, &info); }\n"
magics_HAVE_DLADDR )
cmake_pop_check_state()
endif()
###############################################################################
# Windows compiler options
if( EC_OS_NAME MATCHES "windows" )
# Suppress compliler warnings
# Suppress warnings about using 'insecure' functions. Fixing this would require changes all over
# the codebase which would damage portability.
ecbuild_add_c_flags("/D_CRT_SECURE_NO_WARNINGS")
ecbuild_add_cxx_flags("/D_CRT_SECURE_NO_WARNINGS")
# Suppress warnings about using well-known C functions.
ecbuild_add_c_flags("/D_CRT_NONSTDC_NO_DEPRECATE")
ecbuild_add_cxx_flags("/D_CRT_NONSTDC_NO_DEPRECATE")
# For M_PI
ecbuild_add_c_flags("/D_USE_MATH_DEFINES")
ecbuild_add_cxx_flags("/D_USE_MATH_DEFINES")
# Suppress C4267: warns about possible loss of data when converting 'size_t' to 'int'.
ecbuild_add_c_flags("/wd4267")
ecbuild_add_cxx_flags("/wd4267")
# Suppress C4800: forcing value to bool 'true' or 'false'
ecbuild_add_cxx_flags("/wd4800")
# Suppress C4244: convertions from double to int
#ecbuild_add_cxx_flags("/wd4244")
# Suppress C4244: convertions from double to float
#ecbuild_add_cxx_flags("/wd4305")
#### /D PROJ_MSVC_DLL_IMPORT
# Prevent fatal error C1128
ecbuild_add_cxx_flags("/bigobj")
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-unused-parameter -Wno-overloaded-virtual -Wno-unused-variable -Wno-reorder -Wno-sign-compare")
# set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-unused-parameter -Wno-overloaded-virtual -Wno-unused-variable -Wno-reorder-ctor -Wno-sign-compare")
endif()
###############################################################################
# contents
if ( HAVE_ODB )
ecbuild_info("Adding support for ODB")
list( APPEND MAGICS_EXTRA_LIBRARIES odccore)
endif()
if( HAVE_CAIRO )
list( APPEND MAGICS_PRIVATE_INCLUDE_DIRS ${PANGOCAIRO_INCLUDE_DIRS})
if( EC_OS_NAME MATCHES "windows" )
# Looks like the transitivity of includes is broken
find_package(PkgConfig REQUIRED)
pkg_search_module(GLIB REQUIRED glib-2.0)
list( APPEND MAGICS_PRIVATE_INCLUDE_DIRS ${GLIB_INCLUDE_DIRS})
pkg_search_module(CAIRO REQUIRED cairo)
list( APPEND MAGICS_PRIVATE_INCLUDE_DIRS ${CAIRO_INCLUDE_DIRS})
pkg_search_module(HARFBUZZ REQUIRED harfbuzz)
list( APPEND MAGICS_PRIVATE_INCLUDE_DIRS ${HARFBUZZ_INCLUDE_DIRS})
endif()
endif()
set( MAGICS_LIBRARIES MagPlus )
if( MAGICS_QT )
if( MAGICS_QT6 )
list( APPEND MAGICS_EXTRA_INCLUDE_DIRS ${Qt6Widgets_INCLUDE_DIR} )
list( APPEND MAGICS_EXTRA_LIBRARIES ${Qt6Widgets_LIBRARIES})
elseif ( MAGICS_QT5 )
list( APPEND MAGICS_EXTRA_INCLUDE_DIRS ${Qt5Widgets_INCLUDE_DIR} )
list( APPEND MAGICS_EXTRA_LIBRARIES ${Qt5Widgets_LIBRARIES})
endif()
if( WITH_QT_DEBUG )
list( APPEND MAGICS_EXTRA_DEFINITIONS QT_NO_DEBUG_OUTPUT )
endif()
endif()
if( HAVE_GEOTIFF )
list( APPEND MAGICS_EXTRA_INCLUDE_DIRS ${GEOTIFF_INCLUDE_DIR} )
list( APPEND MAGICS_EXTRA_LIBRARIES ${GEOTIFF_LIBRARY} )
list( APPEND MAGICS_EXTRA_DEFINITIONS HAVE_GEOTIFF )
endif()
list( APPEND MAGICS_EXTRA_LIBRARIES ${CMAKE_THREAD_LIBS_INIT} )
if( EC_OS_NAME MATCHES "windows" )
# We need to link to ws2_32.lib to avoid an unresolved external (gethostname)
# It's part of the Windows SDK so no need to search for it.
list( APPEND MAGICS_EXTRA_LIBRARIES ws2_32 )
# We need to find zlib.lib
# find_library( ZLIB_LIB zlib PATHS ENV PATH )
# list( APPEND MAGICS_EXTRA_LIBRARIES ${ZLIB_LIB} )
find_package( ZLIB REQUIRED ) # for MagML
message("ZLIB include: ${ZLIB_INCLUDE_DIR}")
message("ZLIB library: ${ZLIB_LIBRARIES}")
list( APPEND MAGICS_EXTRA_LIBRARIES ${ZLIB_LIBRARIES} )
endif()
ecbuild_debug("MAGICS_EXTRA_DEFINITIONS => ${MAGICS_EXTRA_DEFINITIONS}")
ecbuild_debug("MAGICS_EXTRA_INCLUDE_DIRS => ${MAGICS_EXTRA_INCLUDE_DIRS}")
ecbuild_debug("MAGICS_EXTRA_LIBRARIES => ${MAGICS_EXTRA_LIBRARIES}")
get_directory_property( MAGICS_DEFINITIONS COMPILE_DEFINITIONS )
add_subdirectory( tools )
add_subdirectory( src )
add_subdirectory( share )
add_subdirectory( apps )
add_subdirectory( test )
if( HAVE_DOCUMENTATION )
add_subdirectory( docs )
endif()
if(NOT HAVE_EFAS)
ecbuild_add_resources( TARGET noefas DONT_PACK_DIRS share/magics/efas)
endif()
# Directories not need in the distribution tar ball!
ecbuild_add_resources( TARGET bamboo DONT_PACK_DIRS bamboo)
ecbuild_add_resources( TARGET old_resources
DONT_PACK_DIRS
docs
regression
toolsjs
notebook)
############################################################################################
# finalize
set( MAGICS_DESCRIPTION "Multi-platform meteorological graphics library" )
set( MAGICS_URL "https://software.ecmwf.int/magics" )
### print all variables
#get_cmake_property(_variableNames VARIABLES)
#foreach (_variableName ${_variableNames})
# ecbuild_info("${_variableName}=${${_variableName}}")
#endforeach()
ecbuild_install_project( NAME Magics )
ecbuild_print_summary()