9 lines
179 B
CMake
9 lines
179 B
CMake
|
cmake_policy(SET CMP0057 NEW)
|
||
|
|
||
|
add_custom_command(OUTPUT out1
|
||
|
COMMAND ${CMAKE_COMMAND} -E echo out1
|
||
|
MAIN_DEPENDENCY input.txt
|
||
|
)
|
||
|
|
||
|
add_custom_target(mytarget1 ALL DEPENDS out1)
|