mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
98bbf4a36a
Remove WIN32 AND NOT CYGWIN if blocks - should be just WIN32 Tested: local linux CMake
17 lines
767 B
CMake
17 lines
767 B
CMake
|
|
##############################################################################
|
|
##############################################################################
|
|
### T E S T I N G ###
|
|
##############################################################################
|
|
##############################################################################
|
|
# Remove any output file left over from previous test run
|
|
add_test (
|
|
NAME HL_CPP_ex_ptExampleFL-clear-objects
|
|
COMMAND ${CMAKE_COMMAND}
|
|
-E remove
|
|
PTcppexampleFL.h5
|
|
)
|
|
|
|
add_test (NAME HL_CPP_ex_ptExampleFL COMMAND $<TARGET_FILE:ptExampleFL>)
|
|
set_tests_properties (HL_CPP_ex_ptExampleFL PROPERTIES DEPENDS HL_CPP_ex_ptExampleFL-clear-objects)
|