mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-29 20:34:20 +00:00
6 lines
161 B
CMake
6 lines
161 B
CMake
add_custom_command(
|
|
OUTPUT output.txt
|
|
COMMAND ${CMAKE_COMMAND} -E echo CustomCommand > output.txt
|
|
)
|
|
add_custom_target(CustomTarget ALL DEPENDS output.txt)
|