summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-08-30 14:25:16 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-08-30 14:25:16 (GMT)
commit373df11c469e6c4b131b3859bf3856ac94892e8a (patch)
tree49f10e69463430d73dcc090b85d55b1405d511e4 /src
parent37532a36883806dcebae2c9870424b99dc2eaf5c (diff)
parente6c11af8704c3ac923dd6afcefaf20c568157770 (diff)
downloadhdf5-373df11c469e6c4b131b3859bf3856ac94892e8a.zip
hdf5-373df11c469e6c4b131b3859bf3856ac94892e8a.tar.gz
hdf5-373df11c469e6c4b131b3859bf3856ac94892e8a.tar.bz2
Merge pull request #1911 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit 'e6c11af8704c3ac923dd6afcefaf20c568157770': Fix namespace usage Fix EXISTS test syntax Update settings Add 32-bit cross-compile toolchain
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 313d231..97ae847 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -990,7 +990,7 @@ if (LOCAL_BATCH_TEST)
endif ()
endif ()
-if (NOT EXISTS ${HDF5_GENERATED_SOURCE_DIR}/H5Tinit.c)
+if (NOT EXISTS "${HDF5_GENERATED_SOURCE_DIR}/H5Tinit.c")
add_executable (H5detect ${HDF5_SRC_DIR}/H5detect.c)
target_include_directories (H5detect PRIVATE "${HDF5_SRC_DIR};${HDF5_BINARY_DIR};$<$<BOOL:${HDF5_ENABLE_PARALLEL}>:${MPI_C_INCLUDE_DIRS}>")
target_compile_definitions(H5detect PUBLIC ${HDF_EXTRA_C_FLAGS} ${HDF_EXTRA_FLAGS})