mirror of
https://github.com/reactos/CMake.git
synced 2024-11-27 21:41:03 +00:00
9db3116226
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
60 lines
1.2 KiB
CMake
60 lines
1.2 KiB
CMake
#
|
|
# Testing
|
|
#
|
|
cmake_minimum_required (VERSION 2.7)
|
|
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 ()
|
|
set (CXX_TEST_PATH .)
|
|
endif ()
|
|
|
|
#
|
|
# Include Dart
|
|
# (will also set NSLOOKUP, HOSTNAME, etc.)
|
|
#
|
|
include (${CMAKE_ROOT}/Modules/Dart.cmake)
|
|
|
|
#
|
|
# 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)
|
|
add_test(testing.1 ${Testing_BINARY_DIR}/bin/testing)
|
|
|
|
#
|
|
# skip level test
|
|
#
|
|
add_subdirectory(Sub/Sub2)
|
|
|
|
# Per-config target name and generator expressions.
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../PerConfig PerConfig)
|
|
add_test(NAME testing.perconfig COMMAND perconfig)
|
|
add_test(NAME testing.driver COMMAND ${PerConfig_COMMAND})
|