summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2014-10-08 23:52:19 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2014-10-08 23:52:19 (GMT)
commit06e4ac895f0ae0c3c4368160b1659af7a52cb062 (patch)
tree54d7c291465572d7891db0982e098d6f8694d93d /bin
parent5449df4880af0fb5f9a76eb010f79deb51e5521e (diff)
downloadhdf5-06e4ac895f0ae0c3c4368160b1659af7a52cb062.zip
hdf5-06e4ac895f0ae0c3c4368160b1659af7a52cb062.tar.gz
hdf5-06e4ac895f0ae0c3c4368160b1659af7a52cb062.tar.bz2
[svn-r25684] HDFFV-8932:
added C++ and High level interface to the default build. Tested: jam, koala, platypus
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cmakehdf518
1 files changed, 17 insertions, 1 deletions
diff --git a/bin/cmakehdf5 b/bin/cmakehdf5
index 5da3cca..d9d0c03 100755
--- a/bin/cmakehdf5
+++ b/bin/cmakehdf5
@@ -26,6 +26,16 @@ installlog="#${progname}_5install.log"
srcdir="../hdf5" # expected source directory
exit_code=0
+# Cmake build options
+hdf5_src=../hdf5
+cacheinit=$hdf5_src/config/cmake/cacheinit.cmake
+build_cpp_lib=-DHDF5_BUILD_CPP_LIB:BOOL=ON # C++ interface default on
+build_fortran= #-DHDF5_BUILD_FORTRAN:BOOL=ON # Fortran interface default off
+build_hl_lib=-DHDF5_BUILD_HL_LIB:BOOL=ON # High Level interface default on
+build_testing=-DBUILD_TESTING:BOOL=ON # Build tests default on
+build_tools=-DHDF5_BUILD_TOOLS:BOOL=ON # Build tools default on
+
+
#=============
# Function definitions
#=============
@@ -99,7 +109,13 @@ fi
echo Running Cmake for HDF5-${version} ...
# 4. Configure the C library, tools and tests with this command:
-STEP "Configure..." "cmake -G 'Unix Makefiles' -DBUILD_TESTING:BOOL=ON -DHDF5_BUILD_TOOLS:BOOL=ON ../hdf5" $configlog
+STEP "Configure..." "cmake \
+ $build_cpp_lib \
+ $build_fortran \
+ $build_hl_lib \
+ $build_testing \
+ $build_tools \
+ $hdf5_src" $configlog
# 5. Build the C library, tools and tests with this command:
STEP "Build the library, tools and tests, ..." "cmake --build . --config Release" $makelog