1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-10-02 06:21:05 +02:00
trexio/CMakeLists.txt

108 lines
2.3 KiB
CMake
Raw Normal View History

2021-11-13 19:01:21 +01:00
cmake_minimum_required(VERSION 3.16)
2021-11-13 19:49:02 +01:00
# =========== SETUP THE PROJECT =============
2021-11-13 19:01:21 +01:00
project(Trexio
VERSION 2.0.0
DESCRIPTION "TREX I/O library"
LANGUAGES C Fortran
)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD_REQUIRED ON)
2021-11-13 19:49:02 +01:00
# ========= DEFINE TREXIO C LIBRARY =========
2021-11-13 19:01:21 +01:00
#IF DO_SHARED
add_library(trexio SHARED
src/trexio.c
src/trexio_text.c
)
#ELIF DO_STATIC
#ENDIF
set_target_properties(trexio PROPERTIES
VERSION ${PROJECT_VERSION}
PUBLIC_HEADER include/trexio.h
)
2021-11-13 19:49:02 +01:00
target_include_directories(trexio PRIVATE src)
include_directories(include)
2021-11-13 19:01:21 +01:00
# ============= CONFIGURE HDF5 ==============
option(ENABLE_HDF5 "Enable HDF5 support" ON)
2021-11-13 19:01:21 +01:00
if(ENABLE_HDF5)
find_package(HDF5 REQUIRED COMPONENTS C HL)
if(HDF5_FOUND)
message(STATUS "HDF5 version :: ${HDF5_VERSION}")
message(STATUS "HDF5 include dir :: ${HDF5_INCLUDE_DIRS}")
message(STATUS "HDF5 libraries :: ${HDF5_C_LIBRARIES}")
else()
# Download and install HDF5 library using FetchContent
# ...
# For now - raise a FatalError
message(FATAL_ERROR "HDF5 is enabled not found.")
endif()
target_sources(trexio PRIVATE src/trexio_hdf5.c)
target_compile_definitions(trexio PUBLIC HAVE_HDF5=1)
target_include_directories(trexio PRIVATE ${HDF5_C_INCLUDE_DIRS})
target_link_libraries(trexio PRIVATE
${HDF5_C_HL_LIBRARIES}
${HDF5_C_LIBRARIES})
2021-11-13 19:01:21 +01:00
endif()
2021-11-13 19:49:02 +01:00
# ================= TESTING =================
enable_testing()
# create the lists of tests
set(Tests_text
open_text
io_dset_float_text
io_dset_str_text
io_safe_dset_float_text
io_dset_int_text
io_num_text
io_str_text
overwrite_all_text
)
if(ENABLE_HDF5)
set(Tests_hdf5
open_hdf5
io_dset_float_hdf5
io_dset_str_hdf5
io_safe_dset_float_hdf5
io_dset_int_hdf5
io_num_hdf5
io_str_hdf5
overwrite_all_hdf5
)
set(Tests io_all ${Tests_text} ${Tests_hdf5})
else()
set(Tests ${Tests_text})
endif()
# Add all the ADD_TEST for each test
foreach(test ${Tests})
add_executable(${test} tests/${test}.c)
target_link_libraries(${test} PRIVATE trexio)
add_test(NAME ${test} COMMAND $<TARGET_FILE:${test}>)
endforeach ()
2021-11-13 19:49:02 +01:00
# ============= INSTALL TREXIO ==============
2021-11-13 19:01:21 +01:00
include(GNUInstallDirs)
install(TARGETS trexio
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
2021-11-13 19:49:02 +01:00
# ===========================================
2021-11-13 19:01:21 +01:00