diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-02-27 20:04:34 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-02-27 20:04:34 (GMT) |
commit | 93744615f930324c04cef2543d272996e09acf56 (patch) | |
tree | a29d9e2d9fc9c0ab2ebf88da6bad14ee20b84805 /test/CMakeLists.txt | |
parent | 90f01d5b160e0cbf950a9378d0a2625918a6eeb8 (diff) | |
download | hdf5-93744615f930324c04cef2543d272996e09acf56.zip hdf5-93744615f930324c04cef2543d272996e09acf56.tar.gz hdf5-93744615f930324c04cef2543d272996e09acf56.tar.bz2 |
Fix list var
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index fd16f20..fd88b5f 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -269,7 +269,7 @@ set (H5_TESTS_MULTIPLE ) # Only build single source tests here foreach (test ${H5_TESTS}) - if (NOT "${test}" IN_LIST H5_TESTS_MULTIPLE) + if (NOT ${test} IN_LIST H5_TESTS_MULTIPLE) ADD_H5_EXE(${test}) endif () endforeach () |