diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-02-05 22:14:52 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-02-05 22:14:52 (GMT) |
commit | f1cffac626e3e1ecbee0f55d7a970643b9c6b397 (patch) | |
tree | badd751fbf2e3d6f393e272f280f72f97940580a | |
parent | 20ee50c5b92e61169f83738740508605246a522f (diff) | |
download | hdf5-f1cffac626e3e1ecbee0f55d7a970643b9c6b397.zip hdf5-f1cffac626e3e1ecbee0f55d7a970643b9c6b397.tar.gz hdf5-f1cffac626e3e1ecbee0f55d7a970643b9c6b397.tar.bz2 |
Remove old dependency construct
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | tools/CMakeLists.txt | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 00ec70a..3c7bb38 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -725,7 +725,6 @@ if (BUILD_TESTING) if (NOT HDF5_EXTERNALLY_CONFIGURED) if (EXISTS "${HDF5_SOURCE_DIR}/test" AND IS_DIRECTORY "${HDF5_SOURCE_DIR}/test") - add_subdirectory (tools/lib) add_subdirectory (test) endif () if (H5_HAVE_PARALLEL) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 8d442e0..41a9fdc 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -9,9 +9,7 @@ add_definitions (${HDF_EXTRA_C_FLAGS}) # -------------------------------------------------------------------- # If testing was NOT enabled, then we need to build the tools library # -------------------------------------------------------------------- -if (NOT BUILD_TESTING) - add_subdirectory (lib) -endif () +add_subdirectory (lib) #----------------------------------------------------------------------------- # Setup include Directories |