mirror of
https://github.com/reactos/CMake.git
synced 2025-01-05 18:38:46 +00:00
048d1adb4e
Provide a way for custom commands to inform the ninja build tool about their implicit dependencies. For now simply make use of the option an error on other generators. Closes: #15479
9 lines
223 B
CMake
9 lines
223 B
CMake
add_custom_command(
|
|
OUTPUT hello.copy.c
|
|
COMMAND "${CMAKE_COMMAND}" -E copy
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/hello.c"
|
|
hello.copy.c
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
|
DEPFILE "test.d"
|
|
)
|