CMake/Tests/CTestTest/test.cmake.in

58 lines
1.9 KiB
CMake

# please see common.cmake for more documentation
###################################################################
# The values in this section must always be provided
###################################################################
# this is the cvs module name that should be checked out
SET (CTEST_MODULE_NAME kwsys)
# these are the the name of the source and binary directory on disk.
# They will be appended to DASHBOARD_ROOT
SET (CTEST_SOURCE_NAME kwsys)
SET (CTEST_BINARY_NAME kwsysBin)
# which ctest command to use for running the dashboard
SET (CTEST_COMMAND
"\"@CMAKE_CTEST_COMMAND@\" -D Experimental -A ${CTEST_SCRIPT_DIRECTORY}/${CTEST_SCRIPT_NAME}"
)
# what cmake command to use for configuring this dashboard
SET (CTEST_CMAKE_COMMAND
"\"@CMAKE_COMMAND@\""
)
####################################################################
# The values in this section are optional you can either
# have them or leave them commented out
####################################################################
# should ctest wipe the binary tree before running
SET (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE)
# this is the initial cache to use for the binary tree, be careful to escape
# any quotes inside of this string if you use it
SET (CTEST_INITIAL_CACHE "
SITE:STRING=@SITE@
BUILDNAME:STRING=@BUILDNAME@
CMAKE_GENERATOR:INTERNAL=@CMAKE_GENERATOR@
CMAKE_CXX_FLAGS:STRING=@CMAKE_CXX_FLAGS@
CMAKE_C_FLAGS:STRING=@CMAKE_C_FLAGS@
DART_ROOT:PATH=
MAKECOMMAND:FILEPATH=@MAKECOMMAND@
MEMORYCHECK_COMMAND:STRING=
")
# if you do not want to use the default location for a
# dashboard then set this variable to the directory
# the dashboard should be in
SET (CTEST_DASHBOARD_ROOT "@CMAKE_CURRENT_BINARY_DIR@/Tests/CTestTest")
# set any extra envionment varibles here
SET (CTEST_ENVIRONMENT
)
SET (CTEST_SOURCE_DIRECTORY "@CMAKE_ROOT@/Source/kwsys")
SET (CTEST_BINARY_DIRECTORY "@CMake_BINARY_DIR@/Tests/CTestTest/${CTEST_BINARY_NAME}")