blob: f1e53e4b379f757f899f2a5ec0b16f882dff24ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# - Function for marking targets as being only for testing
# This module provides the function ECM_MARK_AS_TEST().
#
# The ECM_MARK_AS_TEST function is used to indicate that a target should only
# be built if the BUILD_TESTING option (provided by CTest) is enabled.
#
# ECM_MARK_AS_TEST( target1 target2 ... targetN )
#
# If BUILD_TESTING is False, then targets marked as tests are exluded from
# the ALL target. They are all part of the 'buildtests' target though, so
# even if building with BUILD_TESTING set to False, it is possible to build
# all tests by invoking the 'buildtests' target.
if (NOT BUILD_TESTING)
if(NOT TARGET buildtests)
add_custom_target(buildtests)
endif()
endif()
function(ecm_mark_as_test)
if (NOT BUILD_TESTING)
foreach(_target ${ARGN})
set_target_properties(${_target}
PROPERTIES
EXCLUDE_FROM_ALL TRUE
)
add_dependencies(buildtests ${_target})
endforeach()
endif()
endfunction()
|