Re: [CMake] Multiple custom commands depending on same file

2009-04-22 Thread Bill Hoffman
giuliano wrote: Indeed, both file-A.txt and file-B.txt are dependencies of one of my targets. If you can create a full example that shows the problem, that would help. -Bill giuliano Bill Hoffman wrote, on 4/21/2009 6:16 PM: giuliano wrote: I have something like: ADD_CUSTOM_COMMAND

Re: [CMake] Multiple custom commands depending on same file

2009-04-22 Thread giuliano
Indeed, both file-A.txt and file-B.txt are dependencies of one of my targets. giuliano Bill Hoffman wrote, on 4/21/2009 6:16 PM: giuliano wrote: I have something like: ADD_CUSTOM_COMMAND( OUTPUT ${BUILD_FOLDER}/file-A.txt COMMAND ${XSLT} ARGS

Re: [CMake] Multiple custom commands depending on same file

2009-04-21 Thread Bill Hoffman
giuliano wrote: I have something like: ADD_CUSTOM_COMMAND( OUTPUT ${BUILD_FOLDER}/file-A.txt COMMAND ${XSLT} ARGS--output ${BUILD_FOLDER}/file-A.txt A.xslt file.xml DEPENDS file.xml A.xslt ) ADD_CUSTOM_COMMAND(

[CMake] Multiple custom commands depending on same file

2009-04-21 Thread giuliano
I have something like: ADD_CUSTOM_COMMAND( OUTPUT ${BUILD_FOLDER}/file-A.txt COMMAND ${XSLT} ARGS--output ${BUILD_FOLDER}/file-A.txt A.xslt file.xml DEPENDS file.xml A.xslt ) ADD_CUSTOM_COMMAND( OUTPUT ${BU