You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1001 B
25 lines
1001 B
2 years ago
|
# Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||
|
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014,
|
||
|
# 2015, 2016, 2017, 2018
|
||
|
# University Corporation for Atmospheric Research/Unidata.
|
||
|
|
||
|
# See netcdf-c/COPYRIGHT file for more info.
|
||
|
|
||
|
SET(CDL_EXAMPLE_TESTS do_comps)
|
||
|
|
||
|
FILE(GLOB COPY_FILES ${CMAKE_CURRENT_SOURCE_DIR}/*.sh ${CMAKE_CURRENT_SOURCE_DIR}/*.cdl)
|
||
|
FILE(COPY ${COPY_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR} FILE_PERMISSIONS OWNER_WRITE OWNER_READ OWNER_EXECUTE)
|
||
|
|
||
|
FOREACH(F ${CDL_EXAMPLE_TESTS})
|
||
|
add_sh_test(cdl ${F})
|
||
|
ENDFOREACH()
|
||
|
|
||
|
IF(HAVE_BASH)
|
||
|
SET_TESTS_PROPERTIES(cdl_do_comps PROPERTIES DEPENDS C_tests_simple_xy_wr)
|
||
|
SET_TESTS_PROPERTIES(cdl_do_comps PROPERTIES DEPENDS C_tests_sfc_pres_temp_wr)
|
||
|
SET_TESTS_PROPERTIES(cdl_do_comps PROPERTIES DEPENDS C_test_pres_temp_4D_wr)
|
||
|
ENDIF(HAVE_BASH)
|
||
|
|
||
|
SET(CLEANFILES simple_xy.nc sfc_pres_temp.nc pres_temp_4D.nc)
|
||
|
SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${CLEANFILES}")
|