summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-10-02 16:01:20 (GMT)
committerBrad King <brad.king@kitware.com>2006-10-02 16:01:20 (GMT)
commitfcd500289bf9a3f309bacccf12c4a2605116ef4a (patch)
tree3996e0f32f1099f96c330ec369639cf2a6167a21 /Source
parent1d9f287af758b4a9cf8c35463ce98af1169cccf6 (diff)
downloadCMake-fcd500289bf9a3f309bacccf12c4a2605116ef4a.zip
CMake-fcd500289bf9a3f309bacccf12c4a2605116ef4a.tar.gz
CMake-fcd500289bf9a3f309bacccf12c4a2605116ef4a.tar.bz2
ENH: Renamed NOT_IN_ALL to EXCLUDE_FROM_ALL.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmAddExecutableCommand.cxx2
-rw-r--r--Source/cmAddExecutableCommand.h4
-rw-r--r--Source/cmAddLibraryCommand.cxx2
-rw-r--r--Source/cmAddLibraryCommand.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmAddExecutableCommand.cxx b/Source/cmAddExecutableCommand.cxx
index 2fe544d..e04c124 100644
--- a/Source/cmAddExecutableCommand.cxx
+++ b/Source/cmAddExecutableCommand.cxx
@@ -44,7 +44,7 @@ bool cmAddExecutableCommand::InitialPass(std::vector<std::string> const& args)
++s;
use_macbundle = true;
}
- else if(*s == "NOT_IN_ALL")
+ else if(*s == "EXCLUDE_FROM_ALL")
{
++s;
in_all = false;
diff --git a/Source/cmAddExecutableCommand.h b/Source/cmAddExecutableCommand.h
index 0ed838a..bef409e 100644
--- a/Source/cmAddExecutableCommand.h
+++ b/Source/cmAddExecutableCommand.h
@@ -62,7 +62,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " ADD_EXECUTABLE(exename [WIN32] [MACOSX_BUNDLE] [NOT_IN_ALL]\n"
+ " ADD_EXECUTABLE(exename [WIN32] [MACOSX_BUNDLE] [EXCLUDE_FROM_ALL]\n"
" source1 source2 ... sourceN)\n"
"This command adds an executable target to the current directory. "
"The executable will be built from the list of source files "
@@ -86,7 +86,7 @@ public:
" MACOSX_BUNDLE_SHORT_VERSION_STRING\n"
" MACOSX_BUNDLE_BUNDLE_VERSION\n"
" MACOSX_BUNDLE_COPYRIGHT\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."
;
diff --git a/Source/cmAddLibraryCommand.cxx b/Source/cmAddLibraryCommand.cxx
index 6b85d5f..ac7fc90 100644
--- a/Source/cmAddLibraryCommand.cxx
+++ b/Source/cmAddLibraryCommand.cxx
@@ -57,7 +57,7 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args)
++s;
shared = 2;
}
- else if(*s == "NOT_IN_ALL")
+ else if(*s == "EXCLUDE_FROM_ALL")
{
++s;
in_all = false;
diff --git a/Source/cmAddLibraryCommand.h b/Source/cmAddLibraryCommand.h
index adb6246..497634c 100644
--- a/Source/cmAddLibraryCommand.h
+++ b/Source/cmAddLibraryCommand.h
@@ -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.";
}