User:Barre: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
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 { | |||
fontcolor="#000000"; | |||
fontsize=14; | |||
fontname="Helvetica"; | |||
rankdir=LR; | |||
node [fontcolor="#000000", fontsize=12, fontname="Helvetica"]; | |||
edge [fontcolor="#0000ff", fontsize=9, fontname="Helvetica"]; | |||
clusterrank=local; | |||
style=dashed; | |||
1 [label="Start", peripheries=2]; | |||
2 [label="2"]; | |||
3 [label="3"]; | |||
subgraph cluster0 { | |||
fontsize=8; | |||
label="bar" | |||
1 -> 2 [label="next"]; | |||
} | |||
1 -> 3 [label="skip"]; | |||
2 -> 2 [label="invalid"]; | |||
3 -> 1 [label="next"]; | |||
2 -> 3 [label="next"]; | |||
label="foo"; | |||
} | |||
</graphviz> |
Revision as of 20:13, 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