diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-01-15 18:40:18 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-01-15 18:40:18 (GMT) |
commit | f73103745e9b9165e9d399ddb5b9991d7fb2a9e5 (patch) | |
tree | 67d3b651dca4bcf84bb22fa8788508e366521525 /hl | |
parent | 7022a3380cdee2fa521c8e21e9897e2a7bf1b95a (diff) | |
download | hdf5-f73103745e9b9165e9d399ddb5b9991d7fb2a9e5.zip hdf5-f73103745e9b9165e9d399ddb5b9991d7fb2a9e5.tar.gz hdf5-f73103745e9b9165e9d399ddb5b9991d7fb2a9e5.tar.bz2 |
HDFFV-11001 fix if block
Diffstat (limited to 'hl')
-rw-r--r-- | hl/fortran/CMakeLists.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hl/fortran/CMakeLists.txt b/hl/fortran/CMakeLists.txt index 4c38f4a..3c82574 100644 --- a/hl/fortran/CMakeLists.txt +++ b/hl/fortran/CMakeLists.txt @@ -16,7 +16,6 @@ endif () #----------------------------------------------------------------------------- # Testing #----------------------------------------------------------------------------- -if (BUILD_TESTING AND HDF5_TEST_SERIAL) - add_subdirectory (test) - endif () +if (BUILD_TESTING) + add_subdirectory (test) endif () |