2002-01-20 05:24:55 +03:00
|
|
|
#
|
|
|
|
# Testing
|
|
|
|
#
|
2009-03-16 17:51:30 +03:00
|
|
|
cmake_minimum_required (VERSION 2.7)
|
2002-01-20 05:24:55 +03:00
|
|
|
PROJECT (Testing)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Lib and exe path
|
|
|
|
#
|
|
|
|
SET (LIBRARY_OUTPUT_PATH
|
|
|
|
${Testing_BINARY_DIR}/bin/ CACHE PATH
|
|
|
|
"Single output directory for building all libraries.")
|
|
|
|
|
|
|
|
SET (EXECUTABLE_OUTPUT_PATH
|
|
|
|
${Testing_BINARY_DIR}/bin/ CACHE PATH
|
|
|
|
"Single output directory for building all executables.")
|
|
|
|
|
|
|
|
#
|
|
|
|
# Where will executable tests be written ?
|
|
|
|
#
|
|
|
|
IF (EXECUTABLE_OUTPUT_PATH)
|
|
|
|
SET (CXX_TEST_PATH ${EXECUTABLE_OUTPUT_PATH})
|
|
|
|
ELSE (EXECUTABLE_OUTPUT_PATH)
|
|
|
|
SET (CXX_TEST_PATH .)
|
|
|
|
ENDIF (EXECUTABLE_OUTPUT_PATH)
|
|
|
|
|
2002-01-20 08:11:59 +03:00
|
|
|
#
|
|
|
|
# Include Dart
|
|
|
|
# (will also set NSLOOKUP, HOSTNAME, etc.)
|
|
|
|
#
|
|
|
|
INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake)
|
|
|
|
|
2002-01-20 05:24:55 +03:00
|
|
|
#
|
|
|
|
# Extra coverage
|
|
|
|
#
|
|
|
|
BUILD_COMMAND(BUILD_COMMAND_VAR ${CMAKE_MAKE_PROGRAM})
|
|
|
|
BUILD_NAME(BUILD_NAME_VAR)
|
|
|
|
SITE_NAME(SITE_NAME_VAR)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Enable testing
|
|
|
|
#
|
|
|
|
ENABLE_TESTING()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add test
|
|
|
|
#
|
|
|
|
ADD_EXECUTABLE(testing testing.cxx)
|
2008-12-18 20:28:05 +03:00
|
|
|
ADD_TEST(testing.1 ${Testing_BINARY_DIR}/bin/testing)
|
2002-01-20 05:24:55 +03:00
|
|
|
|
2002-01-20 08:11:59 +03:00
|
|
|
#
|
2005-06-08 20:26:32 +04:00
|
|
|
# skip level test
|
2002-01-20 08:11:59 +03:00
|
|
|
#
|
2005-06-08 20:26:32 +04:00
|
|
|
ADD_SUBDIRECTORY(Sub/Sub2)
|
2009-03-16 17:51:30 +03:00
|
|
|
|
2010-12-08 01:36:24 +03:00
|
|
|
# Per-config target name and generator expressions.
|
|
|
|
ADD_SUBDIRECTORY(${CMAKE_CURRENT_SOURCE_DIR}/../PerConfig PerConfig)
|
2009-03-16 17:51:30 +03:00
|
|
|
ADD_TEST(NAME testing.perconfig COMMAND perconfig)
|
2010-12-08 01:36:24 +03:00
|
|
|
ADD_TEST(NAME testing.driver COMMAND ${PerConfig_COMMAND})
|