forked from openturns/openturns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
688 lines (600 loc) · 25.4 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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
# -*- cmake -*-
cmake_minimum_required (VERSION 3.13)
# By default, build in Release mode. Must appear before project() command
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type")
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "" Release Debug RelWithDebInfo MinSizeRel)
set (CMAKE_TRY_COMPILE_CONFIGURATION ${CMAKE_BUILD_TYPE})
project (openturns)
option (USE_BISON "Looks for Bison if true and then build parser" ON)
option (USE_CUBA "Use Cuba library" ON)
option (USE_FLEX "Looks for Flex if true and then build lexer" ON)
option (USE_TBB "Use Intel Threading Building Blocks library for multithreading" ON)
option (USE_HMAT "Use HMat library (enforces GPL license)" OFF)
option (USE_MUPARSER "Use muParser library" ON)
option (USE_EXPRTK "Use ExprTK library" ON)
option (USE_LIBXML2 "Use LibXml2 for XML support" ON)
option (USE_HDF5 "Use HDF5 for high volume storage" ON)
option (USE_BOOST "Use Boost for distribution computation" ON)
option (USE_MPFR "Use MPFR for real valued special functions computation" ON)
option (USE_MPC "Use MPC for complex valued special functions computation" ON)
option (USE_SPHINX "Use sphinx for documentation" OFF)
option (USE_DOXYGEN "Use Doxygen for API documentation" ON)
option (USE_NLOPT "Use NLopt for additional optimization algorithms" ON)
option (USE_CERES "Use Ceres Solver for additional optimization algorithms" ON)
option (USE_CMINPACK "Use CMinpack for additional optimization algorithms" ON)
option (USE_DLIB "Use dlib for additional optimization algorithms" ON)
option (USE_IPOPT "Use Ipopt for nonlinear optimization" ON)
option (USE_BONMIN "Use Bonmin for MINLP problems" ON)
option (USE_PAGMO "Use Pagmo for multi-objective optimization" ON)
option (USE_SPECTRA "Use Spectra for eigenvalues computation" ON)
option (USE_PRIMESIEVE "Use primesieve for prime numbers generation" ON)
option (USE_OPENMP "Use OpenMP to disable threading" ON)
option (USE_OPENBLAS "Use OpenBLAS to disable threading" ON)
option (USE_CXX17 "Use C++17 standard" ON)
option (USE_NANOFLANN "Use nanoflann for Nearest Neighbor search" ON)
option (BUILD_PYTHON "Build the python module for the library" ON)
option (BUILD_SHARED_LIBS "Build shared libraries" ON)
# Defines our own module path
list (APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
if (POLICY CMP0022)
# INTERFACE_LINK_LIBRARIES defines the link interface
cmake_policy (SET CMP0022 NEW)
endif()
if (POLICY CMP0057)
# Support new IN_LIST if() operator
cmake_policy (SET CMP0057 NEW)
endif ()
if (POLICY CMP0068)
# RPATH settings on macOS do not affect install_name
cmake_policy (SET CMP0068 NEW)
endif ()
if (POLICY CMP0093)
# FindBoost reports Boost_VERSION in x.y.z format
cmake_policy (SET CMP0093 NEW)
endif ()
if (POLICY CMP0058)
# Ninja requires custom command byproducts to be explicit
cmake_policy (SET CMP0058 NEW)
endif()
if(POLICY CMP0042)
# Set MACOSX_RPATH to ON
cmake_policy(SET CMP0042 NEW)
endif()
if (POLICY CMP0054)
cmake_policy (SET CMP0054 NEW)
endif ()
if (POLICY CMP0056)
cmake_policy (SET CMP0056 NEW)
endif ()
if (POLICY CMP0066)
cmake_policy (SET CMP0066 NEW)
endif ()
if (POLICY CMP0074)
# find_package() uses <PackageName>_ROOT variables
cmake_policy(SET CMP0074 NEW)
endif ()
if (POLICY CMP0078)
# swig standard target names
cmake_policy(SET CMP0078 NEW)
endif ()
if (POLICY CMP0086)
# UseSWIG honors SWIG_MODULE_NAME via -module flag
cmake_policy(SET CMP0086 NEW)
endif ()
set (OPENTURNS_HOME_ENV_VAR OPENTURNS_HOME)
include (GNUInstallDirs)
set (OPENTURNS_LIBRARY_PATH ${CMAKE_INSTALL_LIBDIR} CACHE PATH "The directory where the library is installed")
set (OPENTURNS_BIN_PATH ${CMAKE_INSTALL_BINDIR} CACHE PATH "Binary install path")
set (OPENTURNS_INCLUDE_PATH ${CMAKE_INSTALL_INCLUDEDIR} CACHE PATH "The directory where the header files are installed")
set (OPENTURNS_CONFIG_CMAKE_PATH ${CMAKE_INSTALL_LIBDIR}/cmake/openturns CACHE PATH "The directory where the CMake files are installed")
set (OPENTURNS_SYSCONFIG_PATH ${CMAKE_INSTALL_SYSCONFDIR} CACHE PATH "The directory where the configuration file is installed")
set (OPENTURNS_DATA_PATH ${CMAKE_INSTALL_DATAROOTDIR} CACHE PATH "The directory where the common files are installed")
set (OPENTURNS_DOC_PATH ${CMAKE_INSTALL_DOCDIR} CACHE PATH "The directory where the license files are installed")
if (WIN32)
set (DEFAULT_TMP TEMP)
set (PATH_SEP "\\;")
else ()
set(DEFAULT_TMP /tmp)
set (PATH_SEP ":")
endif()
set (OPENTURNS_TEMPDIR
${DEFAULT_TMP}
CACHE PATH "The directory for temporary files. /tmp by default."
)
set (TEMPDIR ${OPENTURNS_TEMPDIR})
if (NOT DEFINED LAPACK_LIBRARIES)
find_package (LAPACK REQUIRED)
endif ()
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${LAPACK_LIBRARIES})
if (USE_SPECTRA)
find_package (Spectra 1.0 CONFIG)
endif ()
if (Spectra_FOUND)
message(STATUS "Found Spectra: ${Spectra_DIR} (found suitable version \"${Spectra_VERSION}\")")
set (OPENTURNS_HAVE_SPECTRA TRUE)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES Spectra::Spectra)
list (APPEND OPENTURNS_ENABLED_FEATURES "spectra")
if (NOT TARGET Eigen3::Eigen)
find_package (Eigen3 CONFIG)
endif ()
endif()
if (USE_PRIMESIEVE)
find_package (primesieve CONFIG)
if (primesieve_FOUND)
set (OPENTURNS_HAVE_PRIMESIEVE TRUE)
message (STATUS "Found primesieve: ${primesieve_DIR} (found version ${primesieve_VERSION})")
list (APPEND OPENTURNS_PRIVATE_LIBRARIES primesieve::primesieve)
list (APPEND OPENTURNS_ENABLED_FEATURES "primesieve")
else ()
# fallback to our macro if primesieveConfig is not provided
find_package (primesieve)
if (primesieve_FOUND)
set (OPENTURNS_HAVE_PRIMESIEVE TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${PRIMESIEVE_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${PRIMESIEVE_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "primesieve")
endif ()
endif ()
endif ()
if (USE_BISON)
find_package (BISON 2.4)
if (BISON_FOUND)
set (OPENTURNS_HAVE_BISON TRUE)
endif ()
endif ()
if (USE_FLEX)
find_package (FLEX)
if (FLEX_FOUND)
set (OPENTURNS_HAVE_FLEX TRUE)
endif ()
endif ()
if (BISON_FOUND AND FLEX_FOUND)
list (APPEND OPENTURNS_ENABLED_FEATURES "bison")
endif ()
if (USE_TBB)
find_package (TBB CONFIG)
if (TBB_FOUND)
message (STATUS "Found TBB: ${TBB_DIR} (found version ${TBB_VERSION})")
set (TBB_LIBRARIES TBB::tbb)
else ()
# fallback to our macro
find_package (TBB 2017)
endif ()
endif ()
if (TBB_FOUND)
set (OPENTURNS_HAVE_TBB TRUE)
if (TBB_INCLUDE_DIRS)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${TBB_INCLUDE_DIRS})
endif ()
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${TBB_LIBRARIES})
if (MSVC OR WINTEL)
set (OPENTURNS_TBB_NO_IMPLICIT_LINKAGE ON CACHE BOOL "Prevent implicit linkage against tbb.lib ")
endif ()
list (APPEND OPENTURNS_ENABLED_FEATURES "tbb")
endif ()
if (USE_MUPARSER)
find_package (muParser 2.2.3 QUIET)
endif ()
if (MUPARSER_FOUND)
set (OPENTURNS_HAVE_MUPARSER TRUE)
set (OPENTURNS_HAVE_ANALYTICAL_PARSER TRUE)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${MUPARSER_LIBRARIES})
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${MUPARSER_INCLUDE_DIRS})
list (APPEND OPENTURNS_ENABLED_FEATURES "muparser")
set (SYMBOLICPARSER_DEFAULT_BACKEND MuParser)
endif ()
if (USE_EXPRTK)
set (OPENTURNS_HAVE_EXPRTK TRUE)
set (OPENTURNS_HAVE_ANALYTICAL_PARSER TRUE)
set (SYMBOLICPARSER_DEFAULT_BACKEND ExprTk)
endif ()
if (USE_HMAT)
find_package (HMAT 1.7 CONFIG)
endif ()
if (HMAT_FOUND)
message(STATUS "Found HMAT: ${HMAT_DIR} (found suitable version \"${HMAT_VERSION}\")")
set (OPENTURNS_HAVE_HMAT TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${HMAT_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${HMAT_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "hmat")
endif ()
if (USE_DOXYGEN)
find_package (Doxygen QUIET)
endif ()
if (USE_LIBXML2)
find_package (LibXml2)
endif ()
if (LibXml2_FOUND)
set (OPENTURNS_HAVE_LIBXML2 TRUE)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES LibXml2::LibXml2)
list (APPEND OPENTURNS_ENABLED_FEATURES "libxml2")
endif ()
if (USE_HDF5)
find_package(HDF5 COMPONENTS C CXX)
endif ()
if (HDF5_FOUND)
set (OPENTURNS_HAVE_HDF5 TRUE)
list (APPEND OPENTURNS_DEFINITIONS ${HDF5_DEFINITIONS})
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${HDF5_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${HDF5_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "hdf5")
endif ()
if (USE_BOOST)
find_package (Boost CONFIG 1.46)
if (Boost_FOUND)
message(STATUS "Found Boost: ${Boost_DIR} (found suitable version \"${Boost_VERSION}\")")
endif ()
# fallback to FindBoost before its deprecation
if (CMAKE_VERSION VERSION_LESS 3.30 AND NOT Boost_FOUND)
find_package (Boost MODULE 1.46)
endif ()
if (Boost_FOUND)
if (CMAKE_VERSION VERSION_LESS 3.15)
# Boost_VERSION reports the integer BOOST_VERSION from boost/version.hpp instead of x.y.z format
set (Boost_VERSION "${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}.${Boost_SUBMINOR_VERSION}")
endif ()
set (OPENTURNS_HAVE_BOOST TRUE)
if (USE_MPFR)
find_package (MPFR)
if (MPFR_FOUND)
set (OPENTURNS_HAVE_MPFR TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${MPFR_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${MPFR_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "mpfr")
endif ()
endif ()
if (USE_MPC AND NOT Boost_VERSION VERSION_LESS 1.68)
find_package (MPC)
if (MPC_FOUND)
set (OPENTURNS_HAVE_MPC TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${MPC_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${MPC_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "mpc")
endif ()
endif ()
list (APPEND OPENTURNS_PRIVATE_LIBRARIES Boost::boost)
list (APPEND OPENTURNS_ENABLED_FEATURES "boost")
endif ()
endif ()
if (USE_CUBA)
find_package (Cuba)
if (Cuba_FOUND)
set (OPENTURNS_HAVE_CUBA TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${CUBA_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${CUBA_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "cuba")
endif ()
endif ()
if (USE_NLOPT)
find_package (NLopt 2.6 CONFIG)
if (NLopt_FOUND)
message(STATUS "Found NLopt: ${NLopt_DIR} (found version \"${NLopt_VERSION}\")")
set (OPENTURNS_HAVE_NLOPT TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${NLOPT_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${NLOPT_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "nlopt")
endif ()
endif ()
if (USE_DLIB)
find_package (dlib 19.8 CONFIG)
if (dlib_FOUND)
set (OPENTURNS_HAVE_DLIB TRUE)
message (STATUS "Found dlib: ${dlib_DIR} (found version ${dlib_VERSION})")
list (APPEND OPENTURNS_PRIVATE_LIBRARIES dlib::dlib)
list (APPEND OPENTURNS_ENABLED_FEATURES "dlib")
endif ()
endif ()
if (USE_CERES)
find_package (Ceres CONFIG)
if (CERES_USES_MINIGLOG)
message (STATUS "Ceres was built with miniglog and will likely leak logs to stderr (prefer glog), disabling.")
set (Ceres_FOUND FALSE)
endif ()
if (Ceres_FOUND)
set (OPENTURNS_HAVE_CERES TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${CERES_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${CERES_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "ceres")
else ()
# https://github.com/ceres-solver/ceres-solver/issues/1024
list (APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
endif ()
endif ()
if (USE_CMINPACK)
find_package (CMinpack CONFIG QUIET)
if (CMinpack_FOUND)
if (TARGET cminpack::cminpack)
message (STATUS "Found CMinpack: ${CMinpack_DIR}")
set (CMINPACK_LIBRARIES cminpack::cminpack)
endif ()
else ()
# fallback to our macro if CMinpackConfig is not provided
find_package (CMinpack)
set (CMinpack_FOUND ${CMINPACK_FOUND})
endif ()
if (CMinpack_FOUND)
set (OPENTURNS_HAVE_CMINPACK TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${CMINPACK_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${CMINPACK_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "cminpack")
endif ()
endif ()
if (USE_BONMIN)
find_package (Bonmin)
if (Bonmin_FOUND)
set (OPENTURNS_HAVE_BONMIN TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${COIN_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${COIN_BONMIN_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "bonmin")
endif ()
endif ()
if (USE_IPOPT)
find_package (Ipopt)
if (Ipopt_FOUND)
set (OPENTURNS_HAVE_IPOPT TRUE)
list (APPEND OPENTURNS_PRIVATE_INCLUDE_DIRS ${IPOPT_INCLUDE_DIRS})
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${IPOPT_LIBRARIES})
list (APPEND OPENTURNS_ENABLED_FEATURES "ipopt")
endif ()
endif ()
if (USE_PAGMO)
find_package (Pagmo CONFIG)
if (Pagmo_FOUND)
message (STATUS "Found Pagmo: ${Pagmo_DIR} (found version \"${Pagmo_VERSION}\")")
set (OPENTURNS_HAVE_PAGMO TRUE)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES Pagmo::pagmo)
list (APPEND OPENTURNS_ENABLED_FEATURES "pagmo")
endif ()
endif ()
if (USE_OPENMP)
find_package (OpenMP)
if (OPENMP_FOUND)
set (OPENTURNS_HAVE_OPENMP TRUE)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES OpenMP::OpenMP_CXX)
endif ()
endif ()
if (USE_NANOFLANN)
find_package (nanoflann CONFIG)
if (nanoflann_FOUND)
message (STATUS "Found nanoflann: ${nanoflann_DIR} (found version \"${nanoflann_VERSION}\")")
set (OPENTURNS_HAVE_NANOFLANN TRUE)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES nanoflann::nanoflann)
list (APPEND OPENTURNS_ENABLED_FEATURES "nanoflann")
endif ()
endif ()
if (MSVC)
# Disable some warnings
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4197 /wd4244 /wd4251 /wd4267 /wd4275 /wd4996")
# for exprtk, boost, swig
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
endif ()
if (CMAKE_VERSION VERSION_LESS 3.20)
include (TestBigEndian)
test_big_endian (DSFMT_BIG_ENDIAN)
else ()
if (CMAKE_CXX_BYTE_ORDER STREQUAL "BIG_ENDIAN")
set (DSFMT_BIG_ENDIAN 1)
endif ()
endif ()
try_compile(OPENTURNS_UNSIGNEDLONG_SAME_AS_UINT64
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/cmake/unsignedlong_same_as_uint64_t.cxx)
# on armel atomic must be explicitely linked
if (UNIX AND CMAKE_CXX_COMPILER_ID MATCHES "GNU")
try_compile(OPENTURNS_HAVE_INLINE_ATOMIC
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/cmake/have_inline_atomic.cxx)
message(STATUS "Performing Test OPENTURNS_HAVE_INLINE_ATOMIC - ${OPENTURNS_HAVE_INLINE_ATOMIC}")
if (NOT OPENTURNS_HAVE_INLINE_ATOMIC)
find_library (ATOMIC_LIBRARY NAMES atomic)
if (ATOMIC_LIBRARY)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${ATOMIC_LIBRARY})
endif ()
endif ()
endif ()
# for consistent floating-point operations across architectures
option (DISABLE_FP_CONTRACT "Disable floating-point contractions" ON)
if (DISABLE_FP_CONTRACT AND CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffp-contract=off")
endif ()
try_run (_HAVE_FR_LOC_RUNS _HAVE_FR_LOC_BUILDS ${CMAKE_CURRENT_BINARY_DIR} ${PROJECT_SOURCE_DIR}/cmake/have_fr_loc.cxx)
if (_HAVE_FR_LOC_BUILDS)
if (NOT _HAVE_FR_LOC_RUNS EQUAL 0)
set (OPENTURNS_HAVE_FR_LOC TRUE)
message (STATUS "French locale found")
else()
set (OPENTURNS_HAVE_FR_LOC FALSE)
message (STATUS "French locale not found")
endif ()
endif ()
# Find system prerequisites
include (CheckIncludeFile)
check_include_file (dirent.h OPENTURNS_HAVE_DIRENT_H )
check_include_file (dlfcn.h OPENTURNS_HAVE_DLFCN_H )
check_include_file (libgen.h OPENTURNS_HAVE_LIBGEN_H )
check_include_file (stdlib.h OPENTURNS_HAVE_STDLIB_H )
check_include_file (sys/stat.h OPENTURNS_HAVE_SYS_STAT_H )
check_include_file (sys/types.h OPENTURNS_HAVE_SYS_TYPES_H )
check_include_file (unistd.h OPENTURNS_HAVE_UNISTD_H )
check_include_file (xlocale.h OPENTURNS_HAVE_XLOCALE_H )
include (CheckSymbolExists)
if(OPENTURNS_HAVE_XLOCALE_H)
check_symbol_exists(uselocale "locale.h;xlocale.h" OPENTURNS_HAVE_USELOCALE )
else()
check_symbol_exists(uselocale "locale.h" OPENTURNS_HAVE_USELOCALE )
endif()
include (CheckFunctionExists)
if (OPENTURNS_HAVE_DLFCN_H AND UNIX)
find_library (LIBDL_LIBRARIES NAMES dl)
mark_as_advanced (LIBDL_LIBRARIES)
if (LIBDL_LIBRARIES)
set (CMAKE_REQUIRED_LIBRARIES ${LIBDL_LIBRARIES})
check_function_exists (dladdr OPENTURNS_HAVE_DLADDR)
set (CMAKE_REQUIRED_LIBRARIES)
if (OPENTURNS_HAVE_DLADDR)
list (APPEND OPENTURNS_PRIVATE_LIBRARIES ${LIBDL_LIBRARIES})
endif ()
endif ()
endif ()
if (USE_OPENBLAS)
set (CMAKE_REQUIRED_LIBRARIES ${LAPACK_LIBRARIES})
check_function_exists("openblas_set_num_threads" OPENTURNS_HAVE_OPENBLAS_SET_NUM_THREADS)
check_function_exists("goto_get_num_procs" OPENTURNS_HAVE_GOTO_GET_NUM_PROCS)
if (OPENTURNS_HAVE_OPENBLAS_SET_NUM_THREADS AND OPENTURNS_HAVE_GOTO_GET_NUM_PROCS)
set (OPENTURNS_HAVE_OPENBLAS TRUE)
endif ()
set (CMAKE_REQUIRED_LIBRARIES)
endif ()
# Some useful macros to ease CMakeLists.txt file writing
set (SOURCEFILES "" CACHE INTERNAL "List of source files to compile")
macro (ot_add_source_file FILENAME)
set (sf ${SOURCEFILES} ${CMAKE_CURRENT_SOURCE_DIR}/${FILENAME})
set (SOURCEFILES ${sf} CACHE INTERNAL "List of source files to compile")
endmacro (ot_add_source_file)
set (BUILT_SOURCEFILES "" CACHE INTERNAL "List of source files to compile")
macro (ot_add_built_source_file FILENAME)
set (sf ${BUILT_SOURCEFILES} ${FILENAME})
set (BUILT_SOURCEFILES ${sf} CACHE INTERNAL "List of built source files to compile")
endmacro (ot_add_built_source_file)
set (HEADERFILES "" CACHE INTERNAL "List of header files to install")
macro (ot_install_header_file FILENAME)
set (hf ${HEADERFILES} ${CMAKE_CURRENT_SOURCE_DIR}/openturns/${FILENAME})
set (HEADERFILES ${hf} CACHE INTERNAL "List of header files to install")
endmacro (ot_install_header_file)
set (SWIGFILES "" CACHE INTERNAL "List of SWIG files to install")
macro (ot_install_swig_file FILENAME)
set (hf ${SWIGFILES} ${CMAKE_CURRENT_SOURCE_DIR}/${FILENAME})
set (SWIGFILES ${hf} CACHE INTERNAL "List of SWIG files to install")
endmacro (ot_install_swig_file)
set (INTERNAL_INCLUDE_DIRS "" CACHE INTERNAL "List of directories with header files needed for build")
macro (ot_add_current_dir_to_include_dirs)
set (inc_dirs ${INTERNAL_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR})
set (INTERNAL_INCLUDE_DIRS ${inc_dirs} CACHE INTERNAL "List of directories with header files needed for build")
endmacro (ot_add_current_dir_to_include_dirs)
macro (ot_add_build_dir_to_include_dirs DIR)
set (inc_dirs ${INTERNAL_INCLUDE_DIRS} ${DIR})
set (INTERNAL_INCLUDE_DIRS ${inc_dirs} CACHE INTERNAL "List of directories with header files needed for build")
endmacro (ot_add_build_dir_to_include_dirs)
if (MSVC OR WINTEL)
list (APPEND OPENTURNS_DEFINITIONS -D_USE_MATH_DEFINES)
endif ()
if (OPENTURNS_INCLUDE_DIRS)
list (REMOVE_DUPLICATES OPENTURNS_INCLUDE_DIRS)
endif (OPENTURNS_INCLUDE_DIRS)
include_directories (${OPENTURNS_INCLUDE_DIRS})
include_directories (${OPENTURNS_PRIVATE_INCLUDE_DIRS})
set (CPACK_PACKAGE_NAME openturns )
set (CPACK_PACKAGE_VERSION_MAJOR 1 )
set (CPACK_PACKAGE_VERSION_MINOR 25dev)
set (CPACK_PACKAGE_VERSION_PATCH )
set (CPACK_SOURCE_GENERATOR "TGZ;TBZ2" )
set (CPACK_BINARY_STGZ OFF CACHE BOOL "STGZ")
set (CPACK_BINARY_TBZ2 ON CACHE BOOL "TBZ2")
set (CPACK_BINARY_TGZ ON CACHE BOOL "TGZ" )
set (CPACK_BINARY_TZ OFF CACHE BOOL "TZ" )
set (CPACK_SOURCE_IGNORE_FILES "/.git;/build;.*~;${CPACK_SOURCE_IGNORE_FILES}")
# Set global definitions
# TODO: remove PACKAGE_<XX> from source code. Needed for compatibility with autotools
set (PACKAGE_NAME ${CPACK_PACKAGE_NAME})
set (PACKAGE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR})
if (CPACK_PACKAGE_VERSION_PATCH)
set (PACKAGE_VERSION ${PACKAGE_VERSION}.${CPACK_PACKAGE_VERSION_PATCH})
endif (CPACK_PACKAGE_VERSION_PATCH)
set (PACKAGE_BUGREPORT bugs@openturns.org)
set(CPACK_SOURCE_PACKAGE_FILE_NAME ${PACKAGE_NAME}-${PACKAGE_VERSION})
# The tests can't be run if this function is absent
enable_testing ()
add_custom_target (tests COMMENT "Build tests")
add_custom_target (check COMMENT "Run pre-installation tests")
add_custom_target (installcheck COMMENT "Run post-installation tests")
if (BUILD_PYTHON)
find_package (SWIG 3.0.11)
if (SWIG_FOUND)
include (${SWIG_USE_FILE})
# this name was chosen in common with pyagrum for otagrum
set (OPENTURNS_SWIG_DEFINITIONS -DSWIG_TYPE_TABLE=pyproba)
# ptr conversion argument to handle None correctly in swig 4.x, this just allows one to pass compilation with swig 3.x
if (SWIG_VERSION VERSION_LESS 4)
list (APPEND OPENTURNS_SWIG_DEFINITIONS -DSWIG_POINTER_NO_NULL=0x0)
endif ()
endif ()
if (CMAKE_VERSION VERSION_LESS 3.26)
find_package (Python 3.6 COMPONENTS Interpreter Development)
else ()
find_package (Python 3.6 COMPONENTS Interpreter Development.Module Development.SABIModule)
endif ()
if (NOT TARGET Python::Module)
include (TargetLinkLibrariesWithDynamicLookup)
endif ()
if (Python_FOUND)
include (FindPythonModule)
find_python_module (numpy)
find_python_module (scipy)
find_python_module (pandas)
find_python_module (matplotlib 3)
find_python_module (chaospy)
find_python_module (dill)
if (USE_SPHINX)
find_program (SPHINX_EXECUTABLE NAMES sphinx-build DOC "Sphinx Documentation Builder (sphinx-doc.org)")
if (NOT SPHINX_EXECUTABLE)
message (STATUS "Could NOT find sphinx-build executable")
endif ()
find_program (DVISVGM_EXECUTABLE NAMES dvisvgm DOC "dvi to svg converter")
find_program (DVIPNG_EXECUTABLE NAMES dvipng DOC "dvi to png converter")
if (NOT (DVISVGM_EXECUTABLE OR DVIPNG_EXECUTABLE))
message (STATUS "Could NOT find dvisvgm|dvipng executable")
endif ()
if (SPHINX_EXECUTABLE AND (DVISVGM_EXECUTABLE OR DVIPNG_EXECUTABLE))
find_python_module (sphinx 1.8)
find_python_module (numpydoc 0.9)
find_python_module (sphinx_gallery 0.7)
find_python_module (sphinx_copybutton)
find_python_module (sphinxcontrib.jquery)
endif ()
if (NOT NUMPYDOC_FOUND OR NOT SPHINX_GALLERY_FOUND OR NOT SPHINX_COPYBUTTON_FOUND OR NOT SPHINXCONTRIB.JQUERY_FOUND OR NOT MATPLOTLIB_FOUND OR NOT LIBXML2_FOUND OR NOT NLopt_FOUND)
set (SPHINX_FOUND FALSE)
message (STATUS "Disabling documentation (need dvisvgm/numpydoc/sphinx-gallery/sphinx-copybutton/sphinxcontrib-jquery/matplotlib/libxml2/nlopt)")
endif ()
endif ()
if (WIN32)
set (OPENTURNS_PYTHON_MODULE_PATH Lib/site-packages CACHE STRING "site-packages dir")
else ()
set (OPENTURNS_PYTHON_MODULE_PATH ${CMAKE_INSTALL_LIBDIR}/python${Python_VERSION_MAJOR}.${Python_VERSION_MINOR}/site-packages CACHE STRING "site-packages dir")
endif ()
endif ()
endif ()
# Define variables without OPENTURNS_ prefix with absolute paths
foreach (_var INSTALL_PATH LIBRARY_PATH INCLUDE_PATH CONFIG_CMAKE_PATH SYSCONFIG_PATH DATA_PATH DOC_PATH PYTHON_MODULE_PATH)
if (IS_ABSOLUTE "${OPENTURNS_${_var}}")
set (${_var} ${OPENTURNS_${_var}})
else ()
set (${_var} ${CMAKE_INSTALL_PREFIX}/${OPENTURNS_${_var}})
endif ()
get_filename_component (${_var} "${${_var}}" ABSOLUTE)
file (TO_NATIVE_PATH "${${_var}}" NATIVE_${_var})
string (REPLACE "\\" "\\\\" NATIVE_${_var} ${NATIVE_${_var}})
endforeach (_var)
# RPATH settings
set (CMAKE_INSTALL_RPATH ${LIBRARY_PATH})
set (CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
set (OPENTURNS_SWIG_INCLUDE_DIRS ${INCLUDE_PATH}/openturns/swig)
add_subdirectory (lib)
if (Python_FOUND AND SWIG_FOUND)
add_subdirectory (python)
endif ()
include (CPack)
install (FILES COPYING
COPYING.LESSER
COPYING.cobyla
COPYING.dsfmt
COPYING.ev3
COPYING.exprtk
COPYING.faddeeva
COPYING.kendall
COPYING.kissfft
COPYING.cephes
COPYING.tnc
DESTINATION ${OPENTURNS_DOC_PATH}
)
include(FeatureSummary)
feature_summary(WHAT ALL)