ENH: Renamed NOT_IN_ALL to EXCLUDE_FROM_ALL.

This commit is contained in:
Brad King
2006-10-02 12:01:20 -04:00
parent 1d9f287af7
commit fcd500289b
10 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
" ADD_LIBRARY(libname [SHARED | STATIC | MODULE] [NOT_IN_ALL]\n"
" ADD_LIBRARY(libname [SHARED | STATIC | MODULE] [EXCLUDE_FROM_ALL]\n"
" source1 source2 ... sourceN)\n"
"Adds a library target. SHARED, STATIC or MODULE keywords are used "
"to set the library type. If the keyword MODULE appears, the library "
@@ -70,7 +70,7 @@ public:
" as the second argument, the type defaults to the current value of "
"BUILD_SHARED_LIBS. If this variable is not set, the type defaults "
"to STATIC.\n"
"If NOT_IN_ALL is given the target will not be built by default. "
"If EXCLUDE_FROM_ALL is given the target will not be built by default. "
"It will be built only if the user explicitly builds the target or "
"another target that requires the target depends on it.";
}