Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:

- name: Configure
if: env.SKIP_COMPILE == 'false'
run: cmake -B build -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_CXX_STANDARD=23 -DCMAKE_BUILD_TYPE=Release
run: cmake -B build -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_CXX_STANDARD=23 -DCMAKE_BUILD_TYPE=Release -DH5CPP_BUILD_TESTS=ON

- name: Build
if: env.SKIP_COMPILE == 'false'
Expand Down
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ if(MPI_FOUND AND HDF5_IS_PARALLEL)
message(STATUS "MPI and PHDF5 found: Parallel H5CPP enabled")
endif()

option(H5CPP_BUILD_TESTS "Build tests" OFF)

# Header-only target
add_library(h5cpp INTERFACE)
add_library(h5cpp::h5cpp ALIAS h5cpp)
Expand Down