[CMake] commands

2015-04-07 Thread Dave Yost
Learning and understanding cmake would be a lot easier if the cmake-commands <http://www.cmake.org/cmake/help/v3.2/manual/cmake-commands.7.html> page would have two columns. On the left, the alphabetic listing, available now. On the right, commands grouped by category. Here’s a catego

[CMake] Fw: Help with understanding some CMake commands and variables

2014-12-30 Thread Koh Augustine
Dear All, I realized that somehow the hyperlink did not appear on the mailing list. Here it is:  http://stackoverflow.com/questions/27715669/understanding-cmake-variable-behavior-in-set-and-message-commands Thank you. Best regards, Augustine Koh On Wednesday, 31 December 2014, 11:19, Koh Au

[CMake] Help with understanding some CMake commands and variables

2014-12-30 Thread Koh Augustine
Dear All CMake Users and Developers, I have a question which I put into a post on Stackoverflow. See: Understanding CMake variable behavior in SET() and MESSAGE() commands |   | |   | |   |   |   |   |   | | Understanding CMake variable behavior in SET() and M...I am trying to understand CMake a

Re: [CMake] Attaching cmake commands to a custom target

2008-03-12 Thread Kaleb Pederson
> > DEPENDS ${PROJECT_SOURCE_DIR}/Doxyfile > ) > > Or something like that. > > Andy > > > > On Wed, Mar 12, 2008 at 1:23 PM, Kaleb Pederson > <[EMAIL PROTECTED]> wrote: > > If I have a custom target, how can I attach a set of cmake comm

Re: [CMake] Attaching cmake commands to a custom target

2008-03-12 Thread Andy Lego
I have a custom target, how can I attach a set of cmake commands to > it? For example, if I have a target: > > ADD_CUSTOM_TARGET( > docs > COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile > DEPENDS ${PROJECT_SOURCE_DIR}/Doxyfile > ) > > A

[CMake] Attaching cmake commands to a custom target

2008-03-12 Thread Kaleb Pederson
If I have a custom target, how can I attach a set of cmake commands to it? For example, if I have a target: ADD_CUSTOM_TARGET( docs COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile DEPENDS ${PROJECT_SOURCE_DIR}/Doxyfile ) And I want to run the following set of