-
Notifications
You must be signed in to change notification settings - Fork 23
/
CMakeLists.txt
730 lines (624 loc) · 26.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
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
# Copyright (C) 1994-2021 Lawrence Livermore National Security, LLC.
# LLNL-CODE-425250.
# All rights reserved.
#
# This file is part of Silo. For details, see silo.llnl.gov.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the disclaimer below.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the disclaimer (as noted
# below) in the documentation and/or other materials provided with
# the distribution.
# * Neither the name of the LLNS/LLNL nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE
# LIVERMORE NATIONAL SECURITY, LLC, THE U.S. DEPARTMENT OF ENERGY OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# This work was produced at Lawrence Livermore National Laboratory under
# Contract No. DE-AC52-07NA27344 with the DOE.
#
# Neither the United States Government nor Lawrence Livermore National
# Security, LLC nor any of their employees, makes any warranty, express
# or implied, or assumes any liability or responsibility for the
# accuracy, completeness, or usefulness of any information, apparatus,
# product, or process disclosed, or represents that its use would not
# infringe privately-owned rights.
#
# Any reference herein to any specific commercial products, process, or
# services by trade name, trademark, manufacturer or otherwise does not
# necessarily constitute or imply its endorsement, recommendation, or
# favoring by the United States Government or Lawrence Livermore
# National Security, LLC. The views and opinions of authors expressed
# herein do not necessarily state or reflect those of the United States
# Government or Lawrence Livermore National Security, LLC, and shall not
# be used for advertising or product endorsement purposes.
#
##############################################################################
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
###
# grab the version string
###
file(STRINGS ${CMAKE_CURRENT_SOURCE_DIR}/SILO_VERSION SILO_VERSION)
# Strip suffix
string(REGEX REPLACE "-.*" "" SILO_VERSION "${SILO_VERSION}")
###-----------------------------------------------------------------------------
# project command will automatically create cmake vars for major, minor,
# patch and tweak from passed VERSION
###-----------------------------------------------------------------------------
project(Silo VERSION ${SILO_VERSION} LANGUAGES CXX C)
###-----------------------------------------------------------------------------
# location for Silo CMake includes
###-----------------------------------------------------------------------------
set(CMAKE_MODULE_PATH ${Silo_SOURCE_DIR}/CMake)
###-----------------------------------------------------------------------------
# If not already set, use a default build type of Release
###-----------------------------------------------------------------------------
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
endif()
###-----------------------------------------------------------------------------
# Output directories.
###-----------------------------------------------------------------------------
if(NOT DEFINED CMAKE_LIBRARY_OUTPUT_DIRECTORY)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY lib CACHE INTERNAL "Output directory for libraries.")
endif()
if(NOT DEFINED CMAKE_ARCHIVE_OUTPUT_DIRECTORY)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY lib CACHE INTERNAL "Output directory for archives.")
endif()
if(NOT DEFINED CMAKE_RUNTIME_OUTPUT_DIRECTORY)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY bin CACHE INTERNAL "Output directory for executables.")
endif()
# turn on folders (VS IDE, ignored otherwise)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# Query if the generator is multi-config or not.
get_property(is_multi_config GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
#
# create an include dir for generated include files
#
set(silo_build_include_dir ${Silo_BINARY_DIR}/include)
file(MAKE_DIRECTORY ${silo_build_include_dir})
###---------------------------------------------------------------------------
# User options
###---------------------------------------------------------------------------
option(SILO_ENABLE_SHARED "Build silo shared library." ON)
option(SILO_ENABLE_SILOCK "Enable building of silock" ON)
option(SILO_ENABLE_SILEX "Enable building of silex (requires Qt5)" OFF)
option(SILO_ENABLE_BROWSER "Enable building of browser" ON)
option(SILO_ENABLE_FORTRAN "Enable Fortran interface to Silo" ON)
option(SILO_ENABLE_HDF5 "Enable hdf5 support" ON)
option(SILO_ENABLE_JSON "Enable experimental json features" OFF)
option(SILO_ENABLE_PYTHON_MODULE "Enable python module" OFF)
option(SILO_ENABLE_TESTS "Enable building of tests." OFF)
option(SILO_BUILD_FOR_BSD_LICENSE "Build BSD licensed version of Silo" ON)
include(CMakeDependentOption)
# only turn on the visibility of SILO_ENABLE_ZFP if SILO_ENABLE_HDF5 is ON
# in which case SILO_ENABLE_ZFP defaults to ON
CMAKE_DEPENDENT_OPTION(SILO_ENABLE_ZFP "Enable Lindstrom array compression" ON
SILO_ENABLE_HDF5 OFF)
# only turn on the visibility of SILO_ENABLE_FPZIP if
# SILO_BUILD_FOR_BSD is OFF AND SILO_ENABLE_HDF5 is ON
# in which case SILO_ENABLE_FPZIP defaults to ON
CMAKE_DEPENDENT_OPTION(SILO_ENABLE_FPZIP "Enable Lindstrom float 1,2,3D array compression" ON
"NOT SILO_BUILD_FOR_BSD_LICENSE;SILO_ENABLE_HDF5" OFF)
# only turn on the visibility of SILO_ENABLE_HZIP if
# SILO_BUILD_FOR_BSD is OFF AND SILO_ENABLE_HDF5 is ON
# in which case SILO_ENABLE_FPZIP defaults to ON
CMAKE_DEPENDENT_OPTION(SILO_ENABLE_HZIP "Enable Lindstrom hex/quad mesh compression" ON
"NOT SILO_BUILD_FOR_BSD_LICENSE;SILO_ENABLE_HDF5" OFF)
##
# Set up a default INSTALL prefix that is peer to the build directory
##
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX ${Silo_BINARY_DIR}/../SiloInstall CACHE PATH "install prefix" FORCE)
endif()
set(BUILD_SHARED_LIBS ${SILO_ENABLE_SHARED})
###---------------------------------------------------------------------------
# Include any config-site <host>.cmake files if available
# the config-site file can override any of the default SILO_ settings
# as well as CMAKE_INSTALL_PREFIX
###---------------------------------------------------------------------------
include(SiloHelpers)
# if user passed -DSILO_CONFIG_SITE to cmake, use it, otherwise
# see if there is a config-site file for this host
if(DEFINED SILO_CONFIG_SITE AND EXISTS ${SILO_CONFIG_SITE})
include(${SILO_CONFIG_SITE})
else()
if(WIN32)
if(EXISTS ${Silo_SOURCE_DIR}/config-site/$ENV{COMPUTERNAME}.cmake)
include(${Silo_SOURCE_DIR}/config-site/$ENV{COMPUTERNAME}.cmake)
endif()
else()
if(EXISTS ${Silo_SOURCE_DIR}/config-site/$ENV{HOST}.cmake)
include(${Silo_SOURCE_DIR}/config-site/$ENV{HOST}.cmake)
elseif(EXISTS ${Silo_SOURCE_DIR}/config-site/$ENV{HOSTNAME}.cmake)
include(${Silo_SOURCE_DIR}/config-site/$ENV{HOSTNAME}.cmake)
endif()
endif()
endif()
###---------------------------------------------------------------------------
# Create a custom target to copy dendencies on Windows
###---------------------------------------------------------------------------
if(WIN32 AND (SILO_ENABLE_SILEX OR SILO_ENABLE_BROWSER))
add_custom_target(copy_deps ALL)
set_target_properties(copy_deps PROPERTIES FOLDER utility)
endif()
###---------------------------------------------------------------------------
# Find necessary packages
###---------------------------------------------------------------------------
##
# Perl, needed to generate lite_pdb.h and lite_score.h
##
find_program(perl_exe NAMES perl perl.exe REQUIRED)
##
# HDF5
##
if(SILO_ENABLE_HDF5)
include(SiloFindHDF5)
endif()
##
# Zlib needed for hzip (non-BSD)
# On Windows, if HDF5 was built with zlib support, need to find the zlib package
# so that the correct path to the dll can be found and copied to the necessary places
##
if(SILO_ENABLE_HZIP OR (WIN32 AND HDF5_ENABLE_Z_LIB_SUPPORT))
include(SiloFindZlib)
endif()
##
# szip if HDF5 was built with szip support on Windows (needed to find dll's)
##
if(WIN32 AND HDF5_ENABLE_SZIP_SUPPORT)
include(SiloFindSzip)
endif()
###-----------------------------------------------------------------------------
# check for needed includes/functions/symbols
###-----------------------------------------------------------------------------
if(WIN32)
# windows doesn't have off64_t, but still need to define its SIZEOF
if(CMAKE_CL_64)
set(SIZEOF_OFF64_T 8)
else()
set(SIZEOF_OFF64_T 4)
endif()
else()
include(${CMAKE_ROOT}/Modules/CheckTypeSize.cmake)
set(CMAKE_REQUIRED_DEFINITIONS -D_LARGEFILE64_SOURCE)
check_type_size("off64_t" SIZEOF_OFF64_T)
if(NOT SIZEOF_OFF64_T)
set(SIZEOF_OFF64_T ${CMAKE_SIZEOF_VOID_P})
endif()
endif()
##
# Add the needed CMake modules
##
include(CheckFunctionExists)
include(CheckIncludeFile)
include(CheckSymbolExists)
##
# check_include_file
##
check_include_file(dlfcn.h HAVE_DLFCN_H)
check_include_file(fcntl.h HAVE_FCNTL_H)
check_include_file(fnmatch.h HAVE_FNMATCH_H)
check_include_file(history.h HAVE_HISTORY_H)
check_include_file(ieeefp.h HAVE_IEEEFP_H)
check_include_file(inttypes.h HAVE_INTTYPES_H)
check_include_file(memory.h HAVE_MEMORY_H)
check_include_file(readline.h HAVE_READLINE_H)
check_include_file(readline/history.h HAVE_READLINE_HISTORY_H)
check_include_file(readline/readline.h HAVE_READLINE_READLINE_H)
check_include_file(stdarg.h HAVE_STDARG_H)
check_include_file(stdint.h HAVE_STDINT_H)
check_include_file(stdlib.h HAVE_STDLIB_H)
check_include_file(strings.h HAVE_STRINGS_H)
check_include_file(string.h HAVE_STRING_H)
check_include_file(sys/fcntl.h HAVE_SYS_FCNTL_H)
check_include_file(sys/stat.h HAVE_SYS_STAT_H)
check_include_file(sys/time.h HAVE_SYS_TIME_H)
check_include_file(sys/types.h HAVE_SYS_TYPES_H)
check_include_file(unistd.h HAVE_UNISTD_H)
##
# check_function_exists
##
check_function_exists(fclose HAVE_FCLOSE_POINTER)
check_function_exists(fflush HAVE_FFLUSH_POINTER)
check_function_exists(fnmatch HAVE_FNMATCH)
check_function_exists(fopen HAVE_FOPEN_POINTER)
check_function_exists(fpclass HAVE_FPCLASS)
check_function_exists(fprintf HAVE_FPRINTF_POINTER)
check_function_exists(fread HAVE_FREAD_POINTER)
check_function_exists(fseek HAVE_FSEEK_POINTER)
check_function_exists(ftell HAVE_FTELL_POINTER)
check_function_exists(fwrite HAVE_FWRITE_POINTER)
check_function_exists(setvbuf HAVE_SETVBUF_POINTER)
check_function_exists(strerror HAVE_STRERROR)
##
# check_symbol_exists
##
check_symbol_exists(isnan "math.h" HAVE_ISNAN)
check_symbol_exists(memmove "memory.h" HAVE_MEMMOVE)
check_symbol_exists(add_history "readline.h" HAVE_READLINE_HISTORY)
check_symbol_exists(stat64 "sys/stat.h" HAVE_STAT64)
check_symbol_exists(stat "sys/stat.h" HAVE_STAT)
if (HAVE_STAT64)
add_definitions(-DHAVE_STAT64)
endif()
if (HAVE_STAT)
add_definitions(-DHAVE_STAT)
endif()
###-----------------------------------------------------------------------------
# Set flags & options from config-site files after everything is set up since
# setting them beforehand can upset some of CMake's own find routines.
###-----------------------------------------------------------------------------
if(DEFINED SILO_C_FLAGS)
string(APPEND CMAKE_C_FLAGS " ${SILO_C_FLAGS}")
endif()
if(DEFINED SILO_CXX_FLAGS)
string(APPEND CMAKE_CXX_FLAGS " ${SILO_CXX_FLAGS}")
endif()
###-----------------------------------------------------------------------------
# Create silo.h from silo.h.in
###-----------------------------------------------------------------------------
set(SILO_VERS_MAJ ${Silo_VERSION_MAJOR})
set(SILO_VERS_MIN ${Silo_VERSION_MINOR})
set(SILO_VERS_PAT ${Silo_VERSION_PATCH})
set(SILO_VERS_TAG Silo_version_${SILO_VERS_MAJ}_${SILO_VERS_MIN})
if(SILO_VERS_PAT)
string(APPEND SILO_VERS_TAG "_${SILO_VERS_PAT}")
endif()
configure_file(${Silo_SOURCE_DIR}/src/silo/silo.h.in
${silo_build_include_dir}/silo.h)
###-----------------------------------------------------------------------------
# Create config.h from config.h.in
###-----------------------------------------------------------------------------
if(SILO_ENABLE_FORTRAN)
enable_language(Fortran)
include(FortranCInterface)
# for config.h
FortranCInterface_HEADER(${silo_build_include_dir}/silo_FC.h MACRO_NAMESPACE "FC_")
if(EXISTS ${silo_build_include_dir}/silo_FC.h)
set(HAVE_SILO_FC_H 1)
install(FILES ${silo_build_include_dir}/silo_FC.h DESTINATION include
PERMISSIONS OWNER_READ OWNER_WRITE
GROUP_READ GROUP_WRITE
WORLD_READ)
endif()
endif()
# set up some vars to be passed to config.h.in
set(SILO_BUG "https://github.com/LLNL/Silo/discussions")
set(SILO_NAME "silo")
set(SILO_TARNAME "silo")
set(SILO_URL "https://silo.llnl.gov")
# these are always defined
set(HAVE_PDB_DRIVER 1)
set(HAVE_NETCDF_DRIVER 1)
set(HAVE_TAURUS_DRIVER 1)
set(STDC_HEADERS 1)
configure_file(${Silo_SOURCE_DIR}/CMake/config.h.cmake.in
${silo_build_include_dir}/config.h)
###-----------------------------------------------------------------------------
# Silo build targets
###-----------------------------------------------------------------------------
if(WIN32)
add_compile_definitions(_CRT_SECURE_NO_DEPRECATE _USE_MATH_DEFINES NOMINMAX)
else()
add_compile_definitions(_LARGEFILE64_SOURCE)
endif()
##
# pdb_detect
##
add_executable(pdb_detect ${Silo_SOURCE_DIR}/src/pdb/detect.c)
target_include_directories(pdb_detect PUBLIC ${silo_build_include_dir})
##
# use pdb_detect to create pdform.h
# Add it as a post-build to pdb_detect
##
add_custom_command(TARGET pdb_detect POST_BUILD
COMMAND $<TARGET_FILE:pdb_detect> > pdform.h
BYPRODUCTS ${silo_build_include_dir}/pdform.h
WORKING_DIRECTORY ${silo_build_include_dir}
COMMENT "Creating pdform.h using pdb_detect"
VERBATIM
USES_TERMINAL)
##
# Use perl to create lite_pdb.h and lite_score.h
# Add as post-build to pdb_detect
##
add_custom_command(TARGET pdb_detect POST_BUILD
COMMAND ${perl_exe} ${Silo_SOURCE_DIR}/config/mklite ${Silo_SOURCE_DIR}/src/pdb/pdb.h lite_pdb.h
BYPRODUCTS ${silo_build_include_dir}/lite_pdb.h
WORKING_DIRECTORY ${silo_build_include_dir}
COMMENT "Creating lite_pdb.h using mklite"
VERBATIM
USES_TERMINAL)
add_custom_command(TARGET pdb_detect POST_BUILD
COMMAND ${perl_exe} ${Silo_SOURCE_DIR}/config/mklite ${Silo_SOURCE_DIR}/src/score/score.h lite_score.h
BYPRODUCTS ${silo_build_include_dir}/lite_score.h
WORKING_DIRECTORY ${silo_build_include_dir}
COMMENT "Creating lite_score.h using mklite"
VERBATIM
USES_TERMINAL)
##
# Silo library
##
# Set up silo library source locations
set(silo_library_sources
${Silo_SOURCE_DIR}/src/debug/silo_debug.c
${Silo_SOURCE_DIR}/src/filters/f_ale3d.c
${Silo_SOURCE_DIR}/src/filters/f_sample.c
${Silo_SOURCE_DIR}/src/netcdf/api.c
${Silo_SOURCE_DIR}/src/netcdf/ent.c
${Silo_SOURCE_DIR}/src/netcdf/netcdf.c
${Silo_SOURCE_DIR}/src/netcdf/obj.c
${Silo_SOURCE_DIR}/src/netcdf/silo_netcdf.c
${Silo_SOURCE_DIR}/src/netcdf/table.c
${Silo_SOURCE_DIR}/src/pdb/pdb.c
${Silo_SOURCE_DIR}/src/pdb/pdbdir.c
${Silo_SOURCE_DIR}/src/pdb/pdbio.c
${Silo_SOURCE_DIR}/src/pdb/pdbmm.c
${Silo_SOURCE_DIR}/src/pdb/pdbx.c
${Silo_SOURCE_DIR}/src/pdb/pdconv.c
${Silo_SOURCE_DIR}/src/pdb/pdlow.c
${Silo_SOURCE_DIR}/src/pdb/pdmemb.c
${Silo_SOURCE_DIR}/src/pdb/pdpath.c
${Silo_SOURCE_DIR}/src/pdb/pdrdwr.c
${Silo_SOURCE_DIR}/src/pdb_drv/silo_pdb.c
${Silo_SOURCE_DIR}/src/score/memmove.c
${Silo_SOURCE_DIR}/src/score/scctl.c
${Silo_SOURCE_DIR}/src/score/scctla.c
${Silo_SOURCE_DIR}/src/score/schash.c
${Silo_SOURCE_DIR}/src/score/scstr.c
${Silo_SOURCE_DIR}/src/silo/alloc.c
${Silo_SOURCE_DIR}/src/silo/extface.c
${Silo_SOURCE_DIR}/src/silo/silo.c
${Silo_SOURCE_DIR}/src/silo/silo_ns.c
${Silo_SOURCE_DIR}/src/silo/utils.c
${Silo_SOURCE_DIR}/src/taurus/silo_taurus.c
${Silo_SOURCE_DIR}/src/taurus/taurus.c
${Silo_SOURCE_DIR}/src/unknown/silo_unknown.c)
if(SILO_ENABLE_FORTRAN)
list(APPEND silo_library_sources ${Silo_SOURCE_DIR}/src/silo/silo_f.c)
endif()
if(SILO_ENABLE_JSON)
# Does the json source need to be untarred and compiled?
# Or is a call to find_package(json ...) require?
# list(APPEND silo_library_sources ${Silo_SOURCE_DIR}/src/silo/silo_json.c)
endif()
set(silo_library_include_dirs
${silo_build_include_dir}
${Silo_SOURCE_DIR}/src/debug
${Silo_SOURCE_DIR}/src/filters
${Silo_SOURCE_DIR}/src/netcdf
${Silo_SOURCE_DIR}/src/pdb
${Silo_SOURCE_DIR}/src/pdb_drv
${Silo_SOURCE_DIR}/src/score
${Silo_SOURCE_DIR}/src/silo
${Silo_SOURCE_DIR}/src/taurus_drv
${Silo_SOURCE_DIR}/src/unknown)
set(SILO_COMPILE_DEFINES SILO_EXPORTS LITE_EXPORTS)
##
# Add hdf5 support
##
if(SILO_ENABLE_HDF5 AND HDF5_FOUND)
list(APPEND silo_library_sources
${Silo_SOURCE_DIR}/src/hdf5_drv/H5FDsilo.c
${Silo_SOURCE_DIR}/src/hdf5_drv/silo_hdf5.c)
list(APPEND silo_library_include_dirs
${Silo_SOURCE_DIR}/src/hdf5_drv)
list(APPEND SILO_COMPILE_DEFINES
AS_SILO_BUILTIN
BIT_STREAM_WORD_TYPE=uint8)
if(SILO_ENABLE_ZFP)
set(HAVE_ZFP 1)
list(APPEND silo_library_sources
${Silo_SOURCE_DIR}/src/hdf5_drv/H5Zzfp.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/bitstream.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode1d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode1f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode1i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode1l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode2d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode2f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode2i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode2l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode3d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode3f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode3i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode3l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode4d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode4f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode4i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/decode4l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode1d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode1f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode1i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode1l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode2d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode2f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode2i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode2l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode3d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode3f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode3i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode3l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode4d.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode4f.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode4i.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/encode4l.c
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src/zfp.c)
list(APPEND silo_library_include_dirs
${Silo_SOURCE_DIR}/src/zfp-0.5.5/include
${Silo_SOURCE_DIR}/src/zfp-0.5.5/src)
list(APPEND SILO_COMPILE_DEFINES
H5_HAVE_FILTER_ZFP
H5Z_ZFP_AS_LIB)
endif()
if(SILO_ENABLE_FPZIP)
list(APPEND SILO_COMPILE_DEFINES
HAVE_FPZIP
FPZIP_FP=FPZIP_FP_SAFE)
list(APPEND silo_library_sources
${Silo_SOURCE_DIR}/src/fpzip/error.cpp
${Silo_SOURCE_DIR}/src/fpzip/rcdecoder.cpp
${Silo_SOURCE_DIR}/src/fpzip/rcencoder.cpp
${Silo_SOURCE_DIR}/src/fpzip/rcqsmodel.cpp
${Silo_SOURCE_DIR}/src/fpzip/read.cpp
${Silo_SOURCE_DIR}/src/fpzip/write.cpp)
list(APPEND silo_library_include_dirs
${Silo_SOURCE_DIR}/src/fpzip)
endif()
if(SILO_ENABLE_HZIP)
list(APPEND SILO_COMPILE_DEFINES HAVE_HZIP)
list(APPEND silo_library_sources
${Silo_SOURCE_DIR}/src/hzip/hzmdecoder.cpp
${Silo_SOURCE_DIR}/src/hzip/hzmencoder.cpp
${Silo_SOURCE_DIR}/src/hzip/hzmio.cpp
${Silo_SOURCE_DIR}/src/hzip/hzmpredictor.cpp
${Silo_SOURCE_DIR}/src/hzip/hzmread.cpp
${Silo_SOURCE_DIR}/src/hzip/hzmwrite.cpp
${Silo_SOURCE_DIR}/src/hzip/hznio.cpp
${Silo_SOURCE_DIR}/src/hzip/hznpredictor.cpp
${Silo_SOURCE_DIR}/src/hzip/hznread.cpp
${Silo_SOURCE_DIR}/src/hzip/hznwrite.cpp
${Silo_SOURCE_DIR}/src/hzip/hzutil.cpp)
list(APPEND silo_library_include_dirs
${Silo_SOURCE_DIR}/src/hzip)
endif()
if(zlib_FOUND)
list(APPEND silo_library_include_dirs ${ZLIB_INCLUDE_DIR})
else()
list(APPEND SILO_COMPILE_DEFINES WITHOUT_ZLIB)
endif()
endif()
add_library(silo ${silo_library_sources})
if(UNIX)
target_link_libraries(silo m)
endif()
target_link_libraries(silo ${CMAKE_DL_LIBS})
target_compile_definitions(silo PRIVATE ${SILO_COMPILE_DEFINES})
add_dependencies(silo pdb_detect)
target_include_directories(silo PRIVATE ${silo_library_include_dirs})
# add list of public headers to be installed
set(silo_headers
${silo_build_include_dir}/lite_pdb.h
${silo_build_include_dir}/lite_score.h
${silo_build_include_dir}/pdform.h
${silo_build_include_dir}/silo.h
${Silo_SOURCE_DIR}/src/silo/silo.inc
${Silo_SOURCE_DIR}/src/silo/silo_f9x.inc
${Silo_SOURCE_DIR}/src/silo/silo_exports.h
${Silo_SOURCE_DIR}/src/silo/pmpio.h)
if(WIN32)
list(APPEND silo_headers ${Silo_SOURCE_DIR}/src/silo/silo_win32_compatibility.h)
# Also install silodiff.bat into bin
install(FILES ${Silo_SOURCE_DIR}/resources/silodiff.bat DESTINATION bin
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
GROUP_READ GROUP_WRITE GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE)
if(SILO_ENABLE_SILEX OR SILO_ENABLE_BROWSER)
# copy silo dll to build/bin dir
add_custom_command(TARGET copy_deps POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
$<TARGET_FILE:silo> ${Silo_BINARY_DIR}/bin/$<$<BOOL:${is_multi_config}>:$<CONFIG>>/)
endif()
endif()
install(FILES ${silo_headers} DESTINATION include
PERMISSIONS OWNER_READ OWNER_WRITE
GROUP_READ GROUP_WRITE
WORLD_READ)
if(SILO_ENABLE_HDF5 AND HDF5_FOUND)
set_target_properties(silo PROPERTIES OUTPUT_NAME siloh5)
target_link_libraries(silo ${HDF5_C_LIBRARIES})
target_include_directories(silo PRIVATE ${HDF5_INCLUDE_DIRS})
endif()
# setting up for installing Silo CMake config files
set(silo_targets_name "SiloTargets")
install(TARGETS silo EXPORT ${silo_targets_name}
LIBRARY DESTINATION lib
PERMISSIONS OWNER_READ OWNER_WRITE
GROUP_READ GROUP_WRITE
WORLD_READ)
##
# silex
##
if(SILO_ENABLE_SILEX)
add_subdirectory(tools/silex)
endif()
##
# browser
##
if(SILO_ENABLE_BROWSER)
add_subdirectory(tools/browser)
endif()
##
# silock
##
if(SILO_ENABLE_SILOCK AND NOT WIN32)
add_executable(silock
${Silo_SOURCE_DIR}/tools/silock/silock.c)
target_link_libraries(silock silo)
if(UNIX)
target_link_libraries(silock m ${CMAKE_DL_LIBS})
endif()
target_include_directories(silock PRIVATE
${silo_build_include_dir}
${Silo_SOURCE_DIR}/src/silo)
install(TARGETS silock DESTINATION bin EXPORT ${silo_targets_name}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
GROUP_READ GROUP_WRITE GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE)
endif()
##
# Python module
##
if(SILO_ENABLE_PYTHON_MODULE)
add_subdirectory(tools/python)
endif()
#-----------------------------------------------------------------------------
# TESTS
#-----------------------------------------------------------------------------
if(SILO_ENABLE_TESTS)
add_subdirectory(tests)
endif()
#-----------------------------------------------------------------------------
# INSTALL
#-----------------------------------------------------------------------------
install(EXPORT ${silo_targets_name} DESTINATION cmake)
include(${CMAKE_ROOT}/Modules/CMakePackageConfigHelpers.cmake)
###
# Set up the include install location for use with the package config files
###
set(INCLUDE_INSTALL_DIR include)
configure_package_config_file(${Silo_SOURCE_DIR}/CMake/SiloConfig.cmake.in
${Silo_BINARY_DIR}/cmake/SiloConfig.cmake
INSTALL_DESTINATION cmake
PATH_VARS INCLUDE_INSTALL_DIR
)
write_basic_package_version_file(
${Silo_BINARY_DIR}/cmake/SiloConfigVersion.cmake
VERSION ${SILO_VERSION}
COMPATIBILITY SameMajorVersion)
# should compatibility be something else? available values are:
# COMPATIBILITY <AnyNewerVersion|SameMajorVersion|SameMinorVersion|ExactVersion
install(FILES ${Silo_BINARY_DIR}/cmake/SiloConfig.cmake
${Silo_BINARY_DIR}/cmake/SiloConfigVersion.cmake
DESTINATION cmake
PERMISSIONS OWNER_READ OWNER_WRITE
GROUP_READ GROUP_WRITE
WORLD_READ)