diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-02-05 22:14:00 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-02-05 22:14:00 (GMT) |
commit | fbaa2192f8171ddb5af175d7f750c19dcad3ae4f (patch) | |
tree | bf2ca14cbe44ed0ec75d1c6bd67c769afbf0a23c | |
parent | d08f56e027762fde54be6959b9c4e76514578ae1 (diff) | |
download | hdf5-fbaa2192f8171ddb5af175d7f750c19dcad3ae4f.zip hdf5-fbaa2192f8171ddb5af175d7f750c19dcad3ae4f.tar.gz hdf5-fbaa2192f8171ddb5af175d7f750c19dcad3ae4f.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 |