diff options
-rw-r--r-- | Tests/CustomCommand/CMakeLists.txt | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/Tests/CustomCommand/CMakeLists.txt b/Tests/CustomCommand/CMakeLists.txt index 01d1dad..669fbb8 100644 --- a/Tests/CustomCommand/CMakeLists.txt +++ b/Tests/CustomCommand/CMakeLists.txt @@ -27,15 +27,6 @@ ADD_EXECUTABLE(generator generator.cxx) GET_TARGET_PROPERTY(generator_PATH generator LOCATION) MESSAGE("Location ${generator_PATH}") -# the folowing assumes that a cmSourceFile -# is instantiated for the output, with GENERATED 1 -# at the end of the day this becomes a what in VS ? -ADD_CUSTOM_COMMAND(OUTPUT ${PROJECT_BINARY_DIR}/generated.c - DEPENDS generator - COMMAND ${generator_PATH} - ARGS ${PROJECT_BINARY_DIR}/generated.c - ) - ################################################################ # # Test using a wrapper to wrap a header file @@ -44,9 +35,6 @@ ADD_CUSTOM_COMMAND(OUTPUT ${PROJECT_BINARY_DIR}/generated.c # add the executable that will generate the file ADD_EXECUTABLE(wrapper wrapper.cxx) -# the following assumes that a cmSourceFile -# is instantiated for the output, with GENERATED 1 -# at the end of the day this becomes a what in VS ? ADD_CUSTOM_COMMAND( OUTPUT ${PROJECT_BINARY_DIR}/wrapped.c ${PROJECT_BINARY_DIR}/wrapped_help.c DEPENDS wrapper @@ -161,6 +149,15 @@ ADD_EXECUTABLE(CustomCommand ${PROJECT_BINARY_DIR}/not_included.h ) +# Add the rule to create generated.c at build time. This is placed +# here to test adding the generation rule after referencing the +# generated source in a target. +ADD_CUSTOM_COMMAND(OUTPUT ${PROJECT_BINARY_DIR}/generated.c + DEPENDS generator + COMMAND ${generator_PATH} + ARGS ${PROJECT_BINARY_DIR}/generated.c + ) + TARGET_LINK_LIBRARIES(CustomCommand GeneratedHeader) # must add a dependency on TDocument otherwise it might never build and |