User:Barre: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
(→Wiki) |
No edit summary |
||
Line 17: | Line 17: | ||
ADD_CUSTOM_TARGET(cvsupdate ${CMAKE_COMMAND} -E chdir "${CMAKE_SOURCE_DIR}" "${CVSCOMMAND}" update) | ADD_CUSTOM_TARGET(cvsupdate ${CMAKE_COMMAND} -E chdir "${CMAKE_SOURCE_DIR}" "${CVSCOMMAND}" update) | ||
</pre> | </pre> | ||
== State Machine == | |||
<graphviz> | |||
digraph G { | |||
label="Foo Bar" | |||
bgcolor="0.2, 0.3, 0.5" | |||
1 [label="1", fontcolor=Black, peripheries=2]; | |||
2 [label="2", fontcolor=Black]; | |||
3 [label="3", fontcolor=Black]; | |||
1 -> 2 [label="1", fontcolor=Blue]; | |||
1 -> 3 [label="2", fontcolor=Blue]; | |||
2 -> 3 [label="1", fontcolor=Blue]; | |||
3 -> 1 [label="1", fontcolor=Blue]; | |||
} | |||
</graphviz> |
Revision as of 17:58, 2 November 2006
<kw_bread_crumbs>prefix=» |small=1|bgcolor=F9F9F9|trim_prefix=User:|on_top_hack=1</kw_bread_crumbs>
Wiki
- MediaWiki topics, including my MediaWiki extensions
- TWiki topics
- DokuWiki
- Wiki Engine Comparison
Slicer
- Slicer topics
C/C++
CMake stuff
- Add a 'cvsupdate' target to update the source tree from the build tree:
ADD_CUSTOM_TARGET(cvsupdate ${CMAKE_COMMAND} -E chdir "${CMAKE_SOURCE_DIR}" "${CVSCOMMAND}" update)
State Machine