You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
742 B
12 lines
742 B
# Cross-compiling is normally global. Cover it without duplicating everything.
|
|
set(CMAKE_CROSSCOMPILING 1)
|
|
add_executable(cxx_exe_cross_emulator ../../empty.cxx)
|
|
set_property(TARGET cxx_exe_cross_emulator PROPERTY CROSSCOMPILING_EMULATOR no-such-emulator)
|
|
|
|
add_executable(cxx_exe_cross_emulator_args ../../empty.cxx)
|
|
set_property(TARGET cxx_exe_cross_emulator_args PROPERTY CROSSCOMPILING_EMULATOR "no-such-emulator;arg1;arg2 with space")
|
|
|
|
add_executable(cxx_exe_test_launcher_and_cross_emulator ../../empty.cxx)
|
|
set_property(TARGET cxx_exe_test_launcher_and_cross_emulator PROPERTY TEST_LAUNCHER "$<1:no-such-launcher>")
|
|
set_property(TARGET cxx_exe_test_launcher_and_cross_emulator PROPERTY CROSSCOMPILING_EMULATOR "$<1:no-such-emulator>")
|