cmake/Tests/RunCMake/property_init/Executable.cmake

27 lines
723 B
CMake
Raw Normal View History

2023-12-07 09:12:54 +01:00
set(dir "${CMAKE_CURRENT_BINARY_DIR}")
set(properties
# property expected alias
# Compilation properties
## Platforms
### Windows
"VS_DEBUGGER_COMMAND" "vsdbg" "<SAME>"
"VS_DEBUGGER_COMMAND_ARGUMENTS" "/?" "<SAME>"
"VS_DEBUGGER_ENVIRONMENT" "env=val" "<SAME>"
"VS_DEBUGGER_WORKING_DIRECTORY" "${dir}" "<SAME>"
# Linking properties
## Platforms
### Android
"ANDROID_GUI" "OFF" "<SAME>"
# Metadata
"CROSSCOMPILING_EMULATOR" "emu" "<SAME>"
2024-04-14 22:45:38 +02:00
"TEST_LAUNCHER" "test" "<SAME>"
2023-12-07 09:12:54 +01:00
)
prepare_target_types(executable
EXECUTABLE
IMPORTED_EXECUTABLE)
run_property_tests(executable properties)