diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-05-13 16:01:50 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-05-13 16:01:50 (GMT) |
commit | ae06433ab0ca13838c2762c8fad165a041d64c42 (patch) | |
tree | 72d645731c00953c3daf6dad8a1cf0dc97326943 /testpar/CMakeLists.txt | |
parent | 940931aa853602b0b6edfd4ca1a6526fd7975dd2 (diff) | |
download | hdf5-ae06433ab0ca13838c2762c8fad165a041d64c42.zip hdf5-ae06433ab0ca13838c2762c8fad165a041d64c42.tar.gz hdf5-ae06433ab0ca13838c2762c8fad165a041d64c42.tar.bz2 |
[svn-r18793] Add files to support building library with CMake
Tested: Local linux
Diffstat (limited to 'testpar/CMakeLists.txt')
-rw-r--r-- | testpar/CMakeLists.txt | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt new file mode 100644 index 0000000..cf12342 --- /dev/null +++ b/testpar/CMakeLists.txt @@ -0,0 +1,46 @@ +cmake_minimum_required (VERSION 2.8) +PROJECT (H5_TEST_PAR) + +#----------------------------------------------------------------------------- +# Define Tests +#----------------------------------------------------------------------------- + +SET (testphdf5_SRCS + ${HDF5_TEST_PAR_SOURCE_DIR}/testphdf5.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_dset.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_file.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_mdset.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_ph5basic.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_coll_chunk.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_span_tree.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_chunk_alloc.c + ${HDF5_TEST_PAR_SOURCE_DIR}/t_filter_read.c +) + +#-- Adding test for testhdf5 +ADD_EXECUTABLE (testphdf5 ${testphdf5_SRCS}) +H5_NAMING (testphdf5) +TARGET_LINK_LIBRARIES (testphdf5 ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) + +ADD_TEST (NAME testphdf5 COMMAND $<TARGET_FILE:testphdf5>) + +MACRO (ADD_H5P_TEST file) + ADD_EXECUTABLE (${file} ${HDF5_TEST_PAR_SOURCE_DIR}/${file}.c) + H5_NAMING (${file}) + TARGET_LINK_LIBRARIES (${file} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET}) + + ADD_TEST (NAME ${file} COMMAND $<TARGET_FILE:${file}>) +ENDMACRO (ADD_H5P_TEST file) + +SET (H5P_TESTS + t_mpi + t_posix_compliant + t_cache + t_pflush1 + t_pflush2 +) + +FOREACH (testp ${H5P_TESTS}) + ADD_H5P_TEST(${testp}) +ENDFOREACH (testp ${H5P_TESTS}) + |