-
Notifications
You must be signed in to change notification settings - Fork 40
/
CMakeLists.txt
791 lines (721 loc) · 29.6 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
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
cmake_minimum_required(VERSION 3.10)
cmake_policy(SET CMP0005 OLD)
cmake_policy(SET CMP0022 NEW)
cmake_policy(SET CMP0026 OLD)
cmake_policy(SET CMP0053 OLD)
cmake_policy(SET CMP0054 NEW)
if(CMAKE_VERSION VERSION_GREATER 3.14.0)
cmake_policy(SET CMP0083 NEW)
include(CheckPIESupported)
check_pie_supported()
endif(CMAKE_VERSION VERSION_GREATER 3.14.0)
set(TFEL_VERSION_FLAVOUR "" CACHE STRING
"Append a flavour to the version number")
option(TFEL_APPEND_VERSION
"append TFEL version number to all libraries, executables and directories" OFF)
option(BUILD_SHARED_LIBS "enable shared libraries" ON)
if(NOT BUILD_SHARED_LIBS)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
# when BUILD_SHARED_LIBS=OFF then disable option enable-static
set(enable-static OFF CACHE BOOL "enable additional static libraries" FORCE)
endif()
if(EXISTS "${PROJECT_BINARY_DIR}/conanbuildinfo.cmake")
include(${PROJECT_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup(NO_OUTPUT_DIRS)
set(TFEL_USES_CONAN ON)
endif(EXISTS "${PROJECT_BINARY_DIR}/conanbuildinfo.cmake")
set(CMAKE_CXX_STANDARD 20)
set(CXX_STANDARD_REQUIRED ON)
# tfel specific macros
include(cmake/modules/tfel.cmake)
# some variables for compatibility with autotools
include(cmake/modules/autotools.cmake)
#major and minor version
set(TFEL_DEVELOPMENT_VERSION ON)
tfel_project(5 0 "0")
set(PACKAGE_BUGREPORT "tfel-contact@cea.fr")
# load the list of rounding modes defined by the IEEE754 standard
include(cmake/modules/ieee754.cmake)
# check for the fenv package
include(CheckIncludeFiles)
check_include_files(fenv.h HAVE_FENV_H)
if(HAVE_FENV_H)
tfel_add_c_cxx_definitions("HAVE_FENV")
endif(HAVE_FENV_H)
option(enable-include-what-you-use
"enable include-what-you-use diagnostics" OFF)
if(enable-include-what-you-use)
find_program(TFEL_IWYU_PATH NAMES include-what-you-use iwyu)
if(NOT TFEL_IWYU_PATH)
message(FATAL_ERROR "could not find the program include-what-you-use")
endif()
endif(enable-include-what-you-use)
find_package(Threads)
if(UNIX)
if(NOT TFEL_DL_LIBRARY)
# This is used in mtest tests files
set(TFEL_LOCAL_LIBRARY_PREFIX "./")
# Looking for libdl...
if((${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR
(${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
find_library(TFEL_DL_LIBRARY
NAMES dl)
if(NOT TFEL_DL_LIBRARY)
MESSAGE(FATAL_ERROR "the libdl library not found. You may want to set the `TFEL_DL_LIBRARY` manually")
endif(NOT TFEL_DL_LIBRARY)
else((${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR
(${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
set(TFEL_DL_LIBRARY "")
endif((${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR
(${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
endif(NOT TFEL_DL_LIBRARY)
else(UNIX)
set(TFEL_LOCAL_LIBRARY_PREFIX "")
set(TFEL_DL_LIBRARY "")
endif(UNIX)
# adding support for rpath on MacOs X
if(APPLE)
set(CMAKE_MACOSX_RPATH ON)
set(CMAKE_SKIP_BUILD_RPATH FALSE)
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir)
if("${isSystemDir}" STREQUAL "-1")
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
endif()
endif()
# type of architecture
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
tfel_add_c_cxx_definitions("TFEL_ARCH64")
else( CMAKE_SIZEOF_VOID_P EQUAL 8 )
tfel_add_c_cxx_definitions("TFEL_ARCH32")
endif( CMAKE_SIZEOF_VOID_P EQUAL 8 )
#extraction git hash
if(NOT TFEL_GIT_HASH)
execute_process(
COMMAND git log -1 --format=%h
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
OUTPUT_VARIABLE TFEL_GIT_HASH
OUTPUT_STRIP_TRAILING_WHITESPACE)
message("Abbreviated commit hash: ${TFEL_GIT_HASH}")
endif(NOT TFEL_GIT_HASH)
tfel_add_c_cxx_definitions("TFEL_GIT_HASH=\"${TFEL_GIT_HASH}\"")
tfel_add_c_cxx_definitions("TFEL_CMAKE_GENERATOR=\"${CMAKE_GENERATOR}\"")
# testing
set(CTEST_CONFIGURATION_TYPE "${JOB_BUILD_CONFIGURATION}")
# (must be placed *before* any add_subdirectory, cmake bug ?)
option(enable-testing "enable tests" ON)
option(enable-mfront-quantity-tests "enable tests of behaviours using quantities (such tests fails on old compilers)" ON)
if(enable-testing)
enable_testing()
if(CMAKE_CONFIGURATION_TYPES)
add_custom_target(check COMMAND
${CMAKE_CTEST_COMMAND} -T test -C $<CONFIGURATION>)
else(CMAKE_CONFIGURATION_TYPES)
add_custom_target(check COMMAND
${CMAKE_CTEST_COMMAND} -T test )
endif(CMAKE_CONFIGURATION_TYPES)
endif()
option(enable-cppcheck "analyse targets with cppcheck" OFF)
if(enable-cppcheck)
message(STATUS "cppcheck support enabled")
set(HAVE_CPPCHECK ON)
include(cmake/modules/FindCppCheck.cmake)
include(cmake/modules/CppCheckTargets.cmake)
endif(enable-cppcheck)
option(enable-vera++ "analyse targets with vera++" OFF)
if(enable-vera++)
message(STATUS "vera++ support enabled")
find_package(vera++)
include(${VERA++_USE_FILE})
if(NOT VERA_ROOT)
message(fatal "VERA_ROOT is not defined")
endif(NOT VERA_ROOT)
add_vera_targets(*.h *.cpp
RECURSE
ROOT "${VERA_ROOT}/lib/vera++")
endif(enable-vera++)
# floatting point exceptions (TODO)
# portable-build
option(enable-portable-build "produce binary that can be shared between various machine (same architecture, same gcc version, different processors" OFF)
# madnex
option(enable-madnex "enable madnex file support in mfront (see https://github.com/thelfer/madnex)" OFF)
if(enable-madnex)
find_package(Madnex REQUIRED)
set(TFEL_HAVE_MADNEX ON)
endif(enable-madnex)
# fortran (placed before compiler detection)
option(enable-fortran "enable fortran support" OFF)
if(enable-fortran)
set(HAVE_FORTRAN ON)
tfel_add_c_cxx_definitions("HAVE_FORTRAN=1")
enable_language (Fortran)
message(STATUS "fortran support enabled")
set(enable-fortran-bindings ON)
else(enable-fortran)
set(HAVE_FORTRAN OFF)
message(STATUS "fortran support disabled")
set(enable-fortran-bindings OFF)
endif(enable-fortran)
#compiler options
include(cmake/modules/compiler.cmake)
if(CMAKE_BUILD_TYPE STREQUAL "Coverage")
include(cmake/modules/CodeCoverage.cmake)
SETUP_TARGET_FOR_COVERAGE(coverage ctest coverage)
endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
#aster
option(enable-aster "build aster interface for mechanical behaviours" OFF)
if(enable-aster)
message(STATUS "aster support enabled")
set(HAVE_ASTER ON)
tfel_add_c_cxx_definitions("HAVE_ASTER=1")
include(cmake/modules/aster.cmake)
endif(enable-aster)
#abaqus
option(enable-abaqus "build abaqus interface for mechanical behaviours" OFF)
if(enable-abaqus)
message(STATUS "abaqus support enabled")
set(HAVE_ABAQUS ON)
tfel_add_c_cxx_definitions("HAVE_ABAQUS=1")
endif(enable-abaqus)
# LS-DYNA
option(enable-lsdyna "build lsdyna interface for mechanical behaviours" OFF)
if(enable-lsdyna)
message(STATUS "lsdyna support enabled")
set(HAVE_LSDYNA ON)
tfel_add_c_cxx_definitions("HAVE_LSDYNA=1")
endif(enable-lsdyna)
#diana-fea
option(enable-diana-fea "build Diana FEA interface for mechanical behaviours" OFF)
if(enable-diana-fea)
message(STATUS "Diana FEA support enabled")
set(HAVE_DIANAFEA ON)
tfel_add_c_cxx_definitions("HAVE_DIANAFEA=1")
endif(enable-diana-fea)
#calculix
option(enable-calculix "build CalculiX interface for mechanical behaviours" OFF)
if(enable-calculix)
message(STATUS "CalculiX support enabled")
set(HAVE_CALCULIX ON)
tfel_add_c_cxx_definitions("HAVE_CALCULIX=1")
endif(enable-calculix)
#ansys
option(enable-ansys "build ansys interface for mechanical behaviours" OFF)
if(enable-ansys)
message(STATUS "ansys support enabled")
set(HAVE_ANSYS ON)
tfel_add_c_cxx_definitions("HAVE_ANSYS=1")
endif(enable-ansys)
#europlexus
option(enable-europlexus "build europlexus interface for mechanical behaviours" OFF)
if(enable-europlexus)
message(STATUS "europlexus support enabled")
set(HAVE_EUROPLEXUS ON)
tfel_add_c_cxx_definitions("HAVE_EUROPLEXUS=1")
endif(enable-europlexus)
#zmat
option(enable-zmat "build zmat interface for mechanical behaviours" OFF)
if(enable-zmat)
include(cmake/modules/zset.cmake)
message(STATUS "zmat support enabled")
set(HAVE_ZMAT ON)
tfel_add_c_cxx_definitions("HAVE_ZMAT=1")
endif(enable-zmat)
#cyrano
include(cmake/modules/cyrano.cmake)
option(enable-cyrano "build cyrano interface for mechanical behaviours" OFF)
if(enable-cyrano)
message(STATUS "cyrano support enabled")
set(HAVE_CYRANO ON)
tfel_add_c_cxx_definitions("HAVE_CYRANO=1")
endif(enable-cyrano)
#castem
include(cmake/modules/castem-unix-type.cmake)
option(local-castem-header "use a local version of castem.h" OFF)
option(enable-castem-pleiades "use a pleiades version of castem" OFF)
if(local-castem-header)
tfel_add_c_cxx_definitions("LOCAL_CASTEM_HEADER=1")
tfel_add_c_cxx_definitions("HAVE_CASTEM=1")
set(HAVE_CASTEM ON)
set(LOCAL_CASTEM_HEADER ON)
else(local-castem-header)
include(cmake/modules/castem.cmake)
endif(local-castem-header)
# comsol
option(enable-comsol "build Comsol interface for mechanical behaviours" OFF)
if(enable-comsol)
message(STATUS "Comsol support enabled")
set(HAVE_COMSOL ON)
tfel_add_c_cxx_definitions("HAVE_COMSOL=1")
endif(enable-comsol)
#gnuplot
include(FindGnuplot)
if(GNUPLOT_FOUND)
set(HAVE_GNUPLOT ON)
tfel_add_c_cxx_definitions("HAVE_GNUPLOT=1")
tfel_add_c_cxx_definitions("GNUPLOT_PATH=\"${GNUPLOT_EXECUTABLE}\"")
message(STATUS "found gnuplot")
message(STATUS "gnuplot path ${GNUPLOT_EXECUTABLE}")
else(GNUPLOT_FOUND)
set(HAVE_GNUPLOT OFF)
endif(GNUPLOT_FOUND)
#python
option(enable-python "enable python support" OFF)
option(enable-python-bindings "enable python bindings support" OFF)
option(enable-numpy-support
"enable numpy support. This option has no effect if python bindings are disabled" ON)
option(enable-broken-boost-python-module-visibility-handling
"workaround a bug in boost python which occurs on FreeBSD+clang. See https://github.com/boostorg/python/issues/173 for details" OFF)
option(python-static-interpreter-workaround
"a workaround to handle the fact the conda' python interpreter is statically linked, which causes issues on Mac Os. See for details https://github.com/ContinuumIO/anaconda-issues/issues/9078. A proper solution may only appear with CMake 3.15 with the `Python::module` target, see https://gitlab.kitware.com/cmake/cmake/issues/18100. Until this version is widely available, this flag proposes a hack. Use with care." OFF)
if(enable-python OR enable-python-bindings)
find_package(PythonLibs REQUIRED)
set(HAVE_PYTHON ON)
tfel_add_c_cxx_definitions("HAVE_PYTHON=1")
tfel_add_c_cxx_definitions("TFEL_PYTHON_INCLUDES=\"-I${PYTHON_INCLUDE_DIRS}\"")
get_filename_component(PYTHON_LIBRARY_PATH ${PYTHON_LIBRARIES} PATH)
get_filename_component(PYTHON_LIBRARY_FULL ${PYTHON_LIBRARIES} NAME)
string(REGEX REPLACE "lib(.+)\\.(.+)$" "\\1" PYTHON_LIBRARY ${PYTHON_LIBRARY_FULL})
tfel_add_c_cxx_definitions("TFEL_PYTHON_LIBRARY_PATH=\"${PYTHON_LIBRARY_PATH}\"")
tfel_add_c_cxx_definitions("TFEL_PYTHON_LIBRARY=\"${PYTHON_LIBRARY}\"")
if(MSVC)
tfel_add_c_cxx_definitions("TFEL_PYTHON_LIBS=\"${PYTHON_LIBRARY_PATH}\${PYTHON_LIBRARY}\"")
else(MSVC)
tfel_add_c_cxx_definitions("TFEL_PYTHON_LIBS=\"-L${PYTHON_LIBRARY_PATH} -l${PYTHON_LIBRARY}\"")
endif(MSVC)
message(STATUS "found python ${PYTHONLIBS_VERSION_STRING}")
message(STATUS "python include path ${PYTHON_INCLUDE_DIRS}")
message(STATUS "python libraries path ${PYTHON_LIBRARY_PATH}")
message(STATUS "python library ${PYTHON_LIBRARY}")
string(REGEX REPLACE "[-a-z+]+.*$" "" PYTHONLIBS_VERSION_CLEANED "${PYTHONLIBS_VERSION_STRING}")
find_package(PythonInterp ${PYTHONLIBS_VERSION_CLEANED} REQUIRED)
message(STATUS "python interpreter ${PYTHON_EXECUTABLE}")
if(NOT TFEL_PYTHON_SITE_PACKAGES_DIR)
if(WIN32)
set(TFEL_PYTHON_SITE_PACKAGES_DIR "bin/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages")
else(WIN32)
set(TFEL_PYTHON_SITE_PACKAGES_DIR "lib${LIB_SUFFIX}/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages")
endif(WIN32)
endif(NOT TFEL_PYTHON_SITE_PACKAGES_DIR)
if(enable-numpy-support AND PYTHON_EXECUTABLE AND (NOT NUMPY_INCLUDE_DIRS))
execute_process(
COMMAND "${PYTHON_EXECUTABLE}" -c
"from __future__ import print_function\ntry: import numpy; print(numpy.get_include(), end='')\nexcept:pass\n"
OUTPUT_VARIABLE NUMPY_INCLUDE_PATH)
find_path(NUMPY_INCLUDE_DIRS numpy/arrayobject.h
HINTS "${NUMPY_INCLUDE_PATH}" "${PYTHON_INCLUDE_PATH}" NO_DEFAULT_PATH)
message(STATUS "Numpy header path ${NUMPY_INCLUDE_DIRS}")
endif(enable-numpy-support AND PYTHON_EXECUTABLE AND (NOT NUMPY_INCLUDE_DIRS))
endif(enable-python OR enable-python-bindings)
#some checks
if(enable-python)
if(NOT HAVE_PYTHON)
message(FATAL_ERROR "python not found. python is mandatory for python suppot.")
endif(NOT HAVE_PYTHON)
endif(enable-python)
#python bindings
# (declared after python to search boost python)
if(enable-python-bindings)
if(NOT HAVE_PYTHON)
message(FATAL_ERROR "python not found. python is mandatory for python bindings.")
endif(NOT HAVE_PYTHON)
message(STATUS "Trying to find libboost_python-py${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}")
# Fix a bug in FindBoost 1.70
# https://github.com/boostorg/boost_install/issues/5
if(NOT DEFINED BUILD_SHARED_LIBS)
set(TFEL_TMP_BUILD_SHARED_LIBS ON)
set(BUILD_SHARED_LIBS ON)
endif(NOT DEFINED BUILD_SHARED_LIBS)
find_package(Boost 1.36.0 COMPONENTS
"python-py${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}")
if(Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
set(Boost_PYTHON_FOUND ON)
set(Boost_PYTHON_LIBRARY "${Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_LIBRARY}")
if(enable-numpy-support)
find_package(Boost 1.36.0 COMPONENTS
"numpy-py${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}")
if(Boost_NUMPY-PY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
set(Boost_NUMPY_FOUND ON)
set(Boost_NUMPY_LIBRARY "${Boost_NUMPY-PY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_LIBRARY}")
endif(Boost_NUMPY-PY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
endif(enable-numpy-support)
else(Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
set(Boost_PYTHON_FOUND OFF)
endif(Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
if(NOT Boost_PYTHON_FOUND)
message(STATUS "Trying to find libboost_python${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}")
find_package(Boost 1.36.0 COMPONENTS
"python${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}")
if(Boost_PYTHON${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
set(Boost_PYTHON_FOUND ON)
set(Boost_PYTHON_LIBRARY "${Boost_PYTHON${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_LIBRARY}")
if(enable-numpy-support)
find_package(Boost 1.36.0 COMPONENTS
"numpy${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}")
if(Boost_NUMPY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
set(Boost_NUMPY_FOUND ON)
set(Boost_NUMPY_LIBRARY "${Boost_NUMPY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_LIBRARY}")
endif(Boost_NUMPY${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
endif(enable-numpy-support)
else(Boost_PYTHON${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
set(Boost_PYTHON_FOUND OFF)
endif(Boost_PYTHON${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}_FOUND)
endif(NOT Boost_PYTHON_FOUND)
if(NOT Boost_PYTHON_FOUND)
message(STATUS "Trying to find libboost_python-py${PYTHON_VERSION_MAJOR}")
find_package(Boost 1.36.0 COMPONENTS
"python-py${PYTHON_VERSION_MAJOR}")
if(Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}_FOUND)
set(Boost_PYTHON_FOUND ON)
set(Boost_PYTHON_LIBRARY "${Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}_LIBRARY}")
if(enable-numpy-support)
find_package(Boost 1.36.0 COMPONENTS
"numpy-py${PYTHON_VERSION_MAJOR}")
if(Boost_NUMPY-PY${PYTHON_VERSION_MAJOR}_FOUND)
set(Boost_NUMPY_FOUND ON)
set(Boost_NUMPY_LIBRARY "${Boost_NUMPY-PY${PYTHON_VERSION_MAJOR}_LIBRARY}")
endif(Boost_NUMPY-PY${PYTHON_VERSION_MAJOR}_FOUND)
endif(enable-numpy-support)
else(Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}_FOUND)
set(Boost_PYTHON_FOUND OFF)
endif(Boost_PYTHON-PY${PYTHON_VERSION_MAJOR}_FOUND)
endif(NOT Boost_PYTHON_FOUND)
if(NOT Boost_PYTHON_FOUND)
message(STATUS "Trying to find libboost_python${PYTHON_VERSION_MAJOR}")
find_package(Boost 1.36.0 COMPONENTS
"python${PYTHON_VERSION_MAJOR}")
if(Boost_PYTHON${PYTHON_VERSION_MAJOR}_FOUND)
set(Boost_PYTHON_FOUND ON)
set(Boost_PYTHON_LIBRARY "${Boost_PYTHON${PYTHON_VERSION_MAJOR}_LIBRARY}")
if(enable-numpy-support)
find_package(Boost 1.36.0 COMPONENTS
"numpy${PYTHON_VERSION_MAJOR}")
if(Boost_NUMPY${PYTHON_VERSION_MAJOR}_FOUND)
set(Boost_NUMPY_FOUND ON)
set(Boost_NUMPY_LIBRARY "${Boost_NUMPY${PYTHON_VERSION_MAJOR}_LIBRARY}")
endif(Boost_NUMPY${PYTHON_VERSION_MAJOR}_FOUND)
endif(enable-numpy-support)
else(Boost_PYTHON${PYTHON_VERSION_MAJOR}_FOUND)
set(Boost_PYTHON_FOUND OFF)
endif(Boost_PYTHON${PYTHON_VERSION_MAJOR}_FOUND)
endif(NOT Boost_PYTHON_FOUND)
if(NOT Boost_PYTHON_FOUND)
message(STATUS "Trying to find libboost_python")
find_package(Boost 1.36.0 COMPONENTS python)
if(Boost_PYTHON_FOUND)
if(enable-numpy-support)
find_package(Boost 1.36.0 COMPONENTS numpy)
if(Boost_NUMPY_FOUND)
message(STATUS " numpy found ${Boost_NUMPY_LIBRARY}")
else(Boost_NUMPY_FOUND)
message(STATUS " numpy *not* found")
endif(Boost_NUMPY_FOUND)
message(STATUS "Boost library python found (${Boost_PYTHON_LIBRARY}).")
endif(enable-numpy-support)
else(Boost_PYTHON_FOUND)
message(FATAL_ERROR "Boost python libraries not found.\n"
"Required packages are :" ${BOOST_MANDATORY_COMPONENTS})
endif(Boost_PYTHON_FOUND)
endif(NOT Boost_PYTHON_FOUND)
if(Boost_NUMPY_FOUND)
set(TFEL_NUMPY_SUPPORT ON)
endif(Boost_NUMPY_FOUND)
if(TFEL_USES_CONAN)
if(NOT python-static-interpreter-workaround)
set(TFEL_PYTHON_MODULES_PRIVATE_LINK_LIBRARIES
${CONAN_LIBS} ${PYTHON_LIBRARIES})
else(python-static-interpreter-workaround)
if(APPLE)
set(TFEL_PYTHON_MODULES_PRIVATE_LINK_LIBRARIES
${CONAN_LIBS})
else(APPLE)
set(TFEL_PYTHON_MODULES_PRIVATE_LINK_LIBRARIES
${CONAN_LIBS} ${PYTHON_LIBRARIES})
endif(APPLE)
endif()
else(TFEL_USES_CONAN)
if(NOT python-static-interpreter-workaround)
set(TFEL_PYTHON_MODULES_PRIVATE_LINK_LIBRARIES
${Boost_PYTHON_LIBRARY} ${PYTHON_LIBRARIES})
else()
if(APPLE)
set(TFEL_PYTHON_MODULES_PRIVATE_LINK_LIBRARIES
${Boost_PYTHON_LIBRARY})
else(APPLE)
set(TFEL_PYTHON_MODULES_PRIVATE_LINK_LIBRARIES
${Boost_PYTHON_LIBRARY} ${PYTHON_LIBRARIES})
endif(APPLE)
endif()
endif(TFEL_USES_CONAN)
if(DEFINED TFEL_TMP_BUILD_SHARED_LIBS)
unset(TFEL_TMP_BUILD_SHARED_LIBS)
unset(BUILD_SHARED_LIBS)
endif(DEFINED TFEL_TMP_BUILD_SHARED_LIBS)
list(APPEND CPACK_COMPONENTS_ALL python_bindings)
set(CPACK_COMPONENT_PYTHON_BINDINGS_DESCRIPTION
"Contains the python bindings for TFEL, MFront and MTest")
set(CPACK_COMPONENT_PYTHON_BINDINGS_DEPENDS core mfront mtest)
tfel_add_c_cxx_definitions("TFEL_PYTHON_BINDINGS")
if(enable-broken-boost-python-module-visibility-handling)
tfel_add_c_cxx_definitions("BOOST_PYTHON_USE_GCC_SYMBOL_VISIBILITY")
endif(enable-broken-boost-python-module-visibility-handling)
endif(enable-python-bindings)
option(enable-java "enable java support" OFF)
if(enable-java)
find_package(Java)
if(NOT Java_JAVA_EXECUTABLE)
message(FATAL_ERROR "java not found. java is mandatory for java suppot.")
endif(NOT Java_JAVA_EXECUTABLE)
if(NOT Java_JAVAC_EXECUTABLE)
message(FATAL_ERROR "javac not found. javac is mandatory for java suppot.")
endif(NOT Java_JAVAC_EXECUTABLE)
find_package(JNI)
if(NOT JNI_FOUND)
message(FATAL_ERROR "Java native interface not found. Java native interface is mandatory for java suppot.")
endif(NOT JNI_FOUND)
message(STATUS "java path : ${Java_JAVA_EXECUTABLE}")
message(STATUS "javac path : ${Java_JAVAC_EXECUTABLE}")
message(STATUS "jni include path : ${JNI_INCLUDE_DIRS}")
set(HAVE_JAVA ON)
tfel_add_c_cxx_definitions("HAVE_JAVA=1")
foreach(jni_include ${JNI_INCLUDE_DIRS})
set(JNI_INCLUDES_FLAGS "${JNI_INCLUDES_FLAGS} -I${jni_include}")
endforeach(jni_include ${JNI_INCLUDE_DIRS})
tfel_add_c_cxx_definitions("TFEL_JAVA_INCLUDES=\"${JNI_INCLUDES_FLAGS}\"")
endif(enable-java)
# cadna
include(cmake/modules/cadna.cmake)
# sub directories
add_subdirectory(include)
add_subdirectory(src)
add_subdirectory(bindings)
add_subdirectory(tfel-config)
add_subdirectory(tfel-unicode-filt)
if(UNIX AND (NOT CYGWIN) AND (NOT MSYS))
add_subdirectory(tfel-doc)
add_subdirectory(tfel-check)
endif(UNIX AND (NOT CYGWIN) AND (NOT MSYS))
add_subdirectory(mfront)
add_subdirectory(mfront-query)
add_subdirectory(mfm)
add_subdirectory(mfront-doc)
add_subdirectory(mtest)
if(enable-testing)
add_subdirectory(tests)
endif()
add_subdirectory(mfm-test-generator)
#documentations
add_custom_target(doc)
# add a target to generate API documentation with Doxygen
option(enable-doxygen-doc "enable generation of the Doxygen documentation" OFF)
if(enable-doxygen-doc)
find_package(Doxygen)
if(DOXYGEN_FOUND)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in
${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
add_custom_target(doc-html
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen" VERBATIM)
add_dependencies(doc doc-html)
list(APPEND CPACK_COMPONENTS_ALL doxygen)
set(CPACK_COMPONENT_DOXYGEN_DESCRIPTION
"Contains the TFEL doxygen documentation")
set(GENERATE_DOXYGEN ON)
else(DOXYGEN_FOUND)
message(FATAL_ERROR "doxygen is required")
endif(DOXYGEN_FOUND)
else(enable-doxygen-doc)
message(STATUS "doxygen documentation is not enabled")
endif(enable-doxygen-doc)
# Looking for LaTeX
option(enable-reference-doc "enable generation of the reference documentation" OFF)
if(enable-reference-doc)
include(cmake/modules/latex.cmake)
endif(enable-reference-doc)
option(enable-website "enable generation of the website" ON)
if((enable-website) OR (enable-reference-doc))
# Looking for pandoc (http://johnmacfarlane.net/pandoc)
include(cmake/modules/pandoc.cmake)
endif((enable-website) OR (enable-reference-doc))
if(enable-reference-doc)
if(HAVE_PANDOC OR HAVE_LATEX)
list(APPEND CPACK_COMPONENTS_ALL docs)
set(CPACK_COMPONENT_DOCS_DESCRIPTION
"Contains the documentation related to TFEL, MFront an MTest")
endif(HAVE_PANDOC OR HAVE_LATEX)
set(GENERATE_REFERENCE_DOC ON)
else(enable-reference-doc)
message(STATUS "Generation of the reference documentation disabled")
endif(enable-reference-doc)
if(enable-website)
if(HAVE_PANDOC)
list(APPEND CPACK_COMPONENTS_ALL website)
set(CPACK_COMPONENT_WEBSITE_DESCRIPTION
"Contains the TFEL web site")
set(GENERATE_WEBSITE ON)
endif(HAVE_PANDOC)
else(enable-website)
message(STATUS "Generation of the TFEL website disabled")
endif(enable-website)
# docs is always included because of the documentation txt files of
# mfront and mtest (--help-command option of mfront and mtest)
add_subdirectory(docs)
## environment under msys
if(CMAKE_HOST_WIN32 OR CYGWIN OR MSYS)
if(MSYS)
string(REGEX REPLACE "(.*):(.*)" "/\\1\\2"
TFEL_BINARY_DIR "${PROJECT_BINARY_DIR}")
else(MSYS)
set(TFEL_BINARY_DIR "${PROJECT_BINARY_DIR}")
endif(MSYS)
if(CMAKE_CONFIGURATION_TYPES)
foreach(conf ${CMAKE_CONFIGURATION_TYPES})
set(TFEL_CONF_DIR "/${conf}")
configure_file(env-win32.sh.in env-${conf}.sh @ONLY)
configure_file(env-win32.bat.in env-${conf}.bat @ONLY)
endforeach(conf ${CMAKE_CONFIGURATION_TYPES})
else(CMAKE_CONFIGURATION_TYPES)
set(TFEL_CONF_DIR "")
configure_file(env-win32.sh.in env.sh @ONLY)
configure_file(env-win32.bat.in env.bat @ONLY)
endif(CMAKE_CONFIGURATION_TYPES)
endif(CMAKE_HOST_WIN32 OR CYGWIN OR MSYS)
## Packaging
option(install-system-libraries "install system libraries" OFF)
if(install-system-libraries)
macro(add_to_system_runtime_libs fn)
if(EXISTS ${fn})
message(STATUS "adding '${fn}' to system runtime libraries")
LIST(APPEND CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS ${fn})
endif(EXISTS ${fn})
endmacro(add_to_system_runtime_libs)
if( MINGW )
message(STATUS "Installing system-libraries: MinGW DLLs." )
get_filename_component(Mingw_Path ${CMAKE_CXX_COMPILER} PATH)
file(GLOB libgcc "${Mingw_Path}/libgcc_s*")
add_to_system_runtime_libs("${libgcc}")
add_to_system_runtime_libs("${Mingw_Path}/libstdc++-6.dll")
endif( MINGW )
if(MSVC)
if(enable-python-bindings)
if(Boost_PYTHON_LIBRARY_DEBUG)
string(REPLACE ".lib" ".dll"
Boost_PYTHON_DLL_DEBUG
"${Boost_PYTHON_LIBRARY_DEBUG}")
add_to_system_runtime_libs("${Boost_PYTHON_DLL_DEBUG}")
endif(Boost_PYTHON_LIBRARY_DEBUG)
if(Boost_PYTHON_LIBRARY_RELEASE)
string(REPLACE ".lib" ".dll"
Boost_PYTHON_DLL_RELEASE
"${Boost_PYTHON_LIBRARY_RELEASE}")
add_to_system_runtime_libs("${Boost_PYTHON_DLL_RELEASE}")
endif(Boost_PYTHON_LIBRARY_RELEASE)
endif(enable-python-bindings)
endif(MSVC)
message(STATUS "runtime libraries : ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS}")
include(InstallRequiredSystemLibraries)
# Actually install it when make install is called.
if( CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS )
list(APPEND CPACK_COMPONENTS_ALL system)
set(CPACK_COMPONENT_SYSTEM_DESCRIPTION
"build system dependencies (e.g. libstdc++ with MingGW)")
set(CPACK_COMPONENT_CORE_DEPENDS system)
foreach(file ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS})
install(PROGRAMS ${file} DESTINATION bin COMPONENT system)
endforeach(file)
endif( CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS )
endif(install-system-libraries)
# install tfel-modules-common.cmake
configure_file(${PROJECT_SOURCE_DIR}/cmake/modules/tfel-modules-common.cmake.in
${PROJECT_BINARY_DIR}/cmake/modules/tfel-modules-common.cmake
@ONLY)
if(TFEL_APPEND_SUFFIX)
install(FILES ${PROJECT_BINARY_DIR}/cmake/modules/tfel-modules-common.cmake
DESTINATION "share/tfel-${TFEL_SUFFIX}/cmake"
COMPONENT core)
else(TFEL_APPEND_SUFFIX)
install(FILES ${PROJECT_BINARY_DIR}/cmake/modules/tfel-modules-common.cmake
DESTINATION "share/tfel/cmake"
COMPONENT core)
endif(TFEL_APPEND_SUFFIX)
# install licences
if(TFEL_APPEND_SUFFIX)
install (FILES LICENCE-GNU-GPL
DESTINATION "share/doc/tfel-${TFEL_SUFFIX}"
COMPONENT core)
install (FILES LICENCE-CECILL-A-EN
DESTINATION "share/doc/tfel-${TFEL_SUFFIX}"
COMPONENT core)
install (FILES LICENCE-CECILL-A-FR
DESTINATION "share/doc/tfel-${TFEL_SUFFIX}"
COMPONENT core)
else(TFEL_APPEND_SUFFIX)
install (FILES LICENCE-GNU-GPL DESTINATION "share/doc/tfel"
COMPONENT core)
install (FILES LICENCE-CECILL-A-EN DESTINATION "share/doc/tfel"
COMPONENT core)
install (FILES LICENCE-CECILL-A-FR DESTINATION "share/doc/tfel"
COMPONENT core)
endif(TFEL_APPEND_SUFFIX)
# install test-suite
if(TFEL_APPEND_SUFFIX)
install(DIRECTORY test-suite
DESTINATION share/tfel-${TFEL_SUFFIX}/
COMPONENT code
PATTERN ".svn" EXCLUDE)
else(TFEL_APPEND_SUFFIX)
install(DIRECTORY test-suite
DESTINATION share/tfel/
COMPONENT code
PATTERN ".svn" EXCLUDE)
endif(TFEL_APPEND_SUFFIX)
set(CPACK_PACKAGE_VERSION "${TFEL_VERSION}")
if(${CMAKE_SYSTEM_PROCESSOR})
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${CPACK_PACKAGE_VERSION}-${CMAKE_SYSTEM_PROCESSOR}")
else(${CMAKE_SYSTEM_PROCESSOR})
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${CPACK_PACKAGE_VERSION}")
endif(${CMAKE_SYSTEM_PROCESSOR})
set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_VERSION}")
set(CPACK_PACKAGE_NAME "${PACKAGE_NAME}")
set(CPACK_PACKAGE_CONTACT "${PACKAGE_BUGREPORT}")
set(CPACK_PACKAGE_VERSION_PATCH "${TFEL_VERSION_PATCH}")
set(CPACK_PACKAGE_VERSION_MAJOR "${TFEL_VERSION_MAJOR}")
set(CPACK_PACKAGE_VERSION_MINOR "${TFEL_VERSION_MINOR}")
set(CPACK_PACKAGE_VENDOR "CEA_EDF")
#set(CPACK_SOURCE_IGNORE_FILES "build;/\.git/;.*~")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "TFEL is a numerical library.")
set(CPACK_PACKAGE_DESCRIPTION_FILE "${PROJECT_SOURCE_DIR}/README.md")
set(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENCE-GNU-GPL")
# rpm packaging
set(CPACK_RPM_COMPONENT_INSTALL ON)
set(CPACK_RPM_PACKAGE_LICENSE "GPL/CECILL-A")
# debian packaging
set(CPACK_DEB_COMPONENT_INSTALL ON)
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Helfer Thomas ${PACKAGE_BUGREPORT}")
set(CPACK_DEBIAN_PACKAGE_SECTION "Science")
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "${TFEL_WEBSITE}")
#NSIS
set(CPACK_NSIS_MODIFY_PATH ON)
set(CPACK_NSIS_MUI_ICON "${PROJECT_SOURCE_DIR}/docs/mfront.ico")
set(CPACK_NSIS_MUI_UNIICON "${PROJECT_SOURCE_DIR}/docs/mfront.ico")
set(CPACK_NSIS_URL_INFO_ABOUT "${TFEL_WEBSITE}")
set(CPACK_NSIS_HELP_LINK "${TFEL_WEBSITE}")
set(CPACK_NSIS_CONTACT "${PACKAGE_BUGREPORT}")
set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
set(CPACK_NSIS_INSTALL_ROOT "C:")
set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "
SetRegView 64
WriteRegStr HKCR 'TFELHOME-${TFEL_VERSION}' '' '$INSTDIR'")
set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS "
SetRegView 64
DeleteRegKey HKCR 'TFELHOME-${TFEL_VERSION}'")
set(CPACK_BUNDLE_NAME "TFEL/MFront")
# source packaging
set(CPACK_VERBATIM_VARIABLES YES)
if(NOT CPACK_SOURCE_GENERATOR)
set(CPACK_SOURCE_GENERATOR "TGZ")
endif()
# packaging
include(CPack)