6 lines
161 B
CMake
Raw Normal View History

2015-08-17 11:37:30 +02:00
add_custom_command(
OUTPUT output.txt
COMMAND ${CMAKE_COMMAND} -E echo CustomCommand > output.txt
)
add_custom_target(CustomTarget ALL DEPENDS output.txt)