diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2019-06-06 04:20:01 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2019-06-06 04:20:01 (GMT) |
commit | 54a07f556cd2f3556f8c7946fe7905bc658a11aa (patch) | |
tree | 2563b439aa79df337a7d4b4ec884be0d535ee1b8 /c++ | |
parent | 4af633d1c480deb7d27c1da7ee2c512a2500e543 (diff) | |
download | hdf5-54a07f556cd2f3556f8c7946fe7905bc658a11aa.zip hdf5-54a07f556cd2f3556f8c7946fe7905bc658a11aa.tar.gz hdf5-54a07f556cd2f3556f8c7946fe7905bc658a11aa.tar.bz2 |
Add options to enable or disable building tools and tests. The default
is enabled for each.
Diffstat (limited to 'c++')
-rw-r--r-- | c++/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/c++/Makefile.am b/c++/Makefile.am index 3713901..319ce6e 100644 --- a/c++/Makefile.am +++ b/c++/Makefile.am @@ -18,9 +18,15 @@ include $(top_srcdir)/config/commence.am +if BUILD_TESTS_CONDITIONAL + TEST_DIR = test +else + TEST_DIR= +endif + ## Only recurse into subdirectories if C++ interface is enabled. if BUILD_CXX_CONDITIONAL - SUBDIRS=src test + SUBDIRS=src $(TEST_DIR) # Test with just the native connector, with a single pass-through connector # and with a doubly-stacked pass-through. |