summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Ninja/CMP0058-common.cmake
blob: 9274d58cd1381b46af35889ade75a6a060d9b977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
add_custom_command(
  OUTPUT output1
  ${byproducts}
  COMMAND ${CMAKE_COMMAND} -E touch output1
  COMMAND ${CMAKE_COMMAND} -E touch byproduct1a
  COMMAND ${CMAKE_COMMAND} -E touch byproduct1b
  )
add_custom_target(Drive1 ALL DEPENDS output1)
add_custom_command(
  OUTPUT output2
  COMMAND ${CMAKE_COMMAND} -E copy output1 output2
  DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/output1
          ${CMAKE_CURRENT_BINARY_DIR}/byproduct1a
          ${CMAKE_CURRENT_BINARY_DIR}/byproduct1b
  )
add_custom_target(Drive2 ALL DEPENDS output2)
add_dependencies(Drive2 Drive1)