summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/property_init/Executable.cmake
blob: a5e4fb87ee305b49e4951d79c0f6e03bb2109a7e (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
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>"
  "TEST_LAUNCHER"                 "test"    "<SAME>"
  )

prepare_target_types(executable
           EXECUTABLE
  IMPORTED_EXECUTABLE)
run_property_tests(executable properties)