blob: 0f7eef53e028bcb2d8baab830c4c0eb9a9cd7738 (
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
31
32
33
34
35
36
37
38
39
40
41
|
# TODO: $<CONFIG> matches both the conumer's configuration AND the selected
# configuration of the imported target. This is ungood, and eventually we need
# a way to match only the selected configuration of the imported target. For
# historic reasons, that will probably not be $<CONFIG>, which means $<CONFIG>
# should eventually stop matching the selected configuration of the imported
# target. When that happens, this test should be changed to use the new
# mechanism, and the test cases adjusted accordingly.
# Under CMP0200 OLD, CMake fails to select a valid configuration for an
# imported INTERFACE library with no location, and will (as an implementation
# artifact) select the last configuration in IMPORTED_CONFIGURATIONS.
#
# Under NEW, CMake should select a configuration which matches the current
# build type, if available in IMPORTED_CONFIGURATIONS.
function(do_match_config_test)
add_library(lib_match INTERFACE IMPORTED)
set_target_properties(lib_match PROPERTIES
IMPORTED_CONFIGURATIONS "TEST;RELEASE;DEBUG"
INTERFACE_COMPILE_DEFINITIONS
"$<$<CONFIG:debug>:DEBUG>;$<$<CONFIG:release>:RELEASE>;$<$<CONFIG:test>:TEST>"
)
add_executable(exe_match configtest.c)
target_compile_definitions(exe_match PRIVATE ${ARGN})
target_link_libraries(exe_match PRIVATE lib_match)
endfunction()
# Under NEW, CMake should select the first of IMPORTED_CONFIGURATIONS if no
# mapping exists and no configuration matching the current build type exists.
function(do_first_config_test)
add_library(lib_first INTERFACE IMPORTED)
set_target_properties(lib_first PROPERTIES
IMPORTED_CONFIGURATIONS "TEST;DEBUG"
INTERFACE_COMPILE_DEFINITIONS
"$<$<CONFIG:debug>:DEBUG>;$<$<CONFIG:test>:TEST>"
)
add_executable(exe_first configtest.c)
target_compile_definitions(exe_first PRIVATE ${ARGN})
target_link_libraries(exe_first PRIVATE lib_first)
endfunction()
|