summaryrefslogtreecommitdiffstats
path: root/Source/cmSubdirCommand.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-06-16 13:45:16 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-06-16 13:45:16 (GMT)
commit7ce0ee34377886e6b35ee8275c81bc71bb500032 (patch)
tree2a20f889fe1eaa1bcebf08f962742c8f69122c5e /Source/cmSubdirCommand.h
parent6ccbfe979583078e02c5e3eb55d83aebd04c9b7c (diff)
downloadCMake-7ce0ee34377886e6b35ee8275c81bc71bb500032.zip
CMake-7ce0ee34377886e6b35ee8275c81bc71bb500032.tar.gz
CMake-7ce0ee34377886e6b35ee8275c81bc71bb500032.tar.bz2
clean up documentation
Diffstat (limited to 'Source/cmSubdirCommand.h')
-rw-r--r--Source/cmSubdirCommand.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmSubdirCommand.h b/Source/cmSubdirCommand.h
index fce1985..020d0398 100644
--- a/Source/cmSubdirCommand.h
+++ b/Source/cmSubdirCommand.h
@@ -62,13 +62,15 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " SUBDIRS(dir1 dir2 ...[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...])\n"
+ " SUBDIRS(dir1 dir2 ...[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...] [PREORDER] )\n"
"Add a list of subdirectories to the build. "
"This will cause any CMakeLists.txt files in the sub directories "
- "to be processed by CMake. Any directories after the EXCLUDE_FROM_ALL marker "
+ "to be processed by CMake. Any directories after the PREORDER flag "
+ "are traversed first by makefile builds, the PRORDER flag has no effect on IDE projects. "
+ " Any directories after the EXCLUDE_FROM_ALL marker "
"will not be included in the top level makefile or project file. This is useful"
" for having cmake create makefiles or projects for a set of examples in a project."
- "You would want cmake to generated makefiles or project files for all the examples at"
+ " You would want cmake to generated makefiles or project files for all the examples at"
" the same time, but you would not want them to show up in the top level project or be built"
" each time make is run from the top.";
}