You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
298 B

add_custom_command(
OUTPUT top.txt
COMMAND ${CMAKE_COMMAND} -DOUTFILE=top.txt -DINFILE=topdep.txt -DDEPFILE=top.txt.d -DSTAMPFILE=topstamp.txt -DDEPDIR= -P ${CMAKE_SOURCE_DIR}/WriteDepfile.cmake
DEPFILE top.txt.d
)
add_custom_target(top ALL DEPENDS top.txt)
add_subdirectory(Subdirectory)