[cmake-commits] king committed cmAddExecutableCommand.cxx 1.27 1.28 cmAddExecutableCommand.h 1.15 1.16 cmAddLibraryCommand.cxx 1.25 1.26 cmAddLibraryCommand.h 1.16 1.17

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Oct 2 12:01:22 EDT 2006


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv10085/Source

Modified Files:
	cmAddExecutableCommand.cxx cmAddExecutableCommand.h 
	cmAddLibraryCommand.cxx cmAddLibraryCommand.h 
Log Message:
ENH: Renamed NOT_IN_ALL to EXCLUDE_FROM_ALL.


Index: cmAddLibraryCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmAddLibraryCommand.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- cmAddLibraryCommand.h	2 Oct 2006 15:13:56 -0000	1.16
+++ cmAddLibraryCommand.h	2 Oct 2006 16:01:19 -0000	1.17
@@ -61,7 +61,7 @@
   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 @@
       " 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.";
     }

Index: cmAddLibraryCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmAddLibraryCommand.cxx,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- cmAddLibraryCommand.cxx	2 Oct 2006 15:13:56 -0000	1.25
+++ cmAddLibraryCommand.cxx	2 Oct 2006 16:01:19 -0000	1.26
@@ -57,7 +57,7 @@
       ++s;
       shared = 2;
       }
-    else if(*s == "NOT_IN_ALL")
+    else if(*s == "EXCLUDE_FROM_ALL")
       {
       ++s;
       in_all = false;

Index: cmAddExecutableCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmAddExecutableCommand.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- cmAddExecutableCommand.h	2 Oct 2006 15:13:56 -0000	1.15
+++ cmAddExecutableCommand.h	2 Oct 2006 16:01:19 -0000	1.16
@@ -62,7 +62,7 @@
   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 @@
       "  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."
       ;

Index: cmAddExecutableCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmAddExecutableCommand.cxx,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- cmAddExecutableCommand.cxx	2 Oct 2006 15:13:56 -0000	1.27
+++ cmAddExecutableCommand.cxx	2 Oct 2006 16:01:19 -0000	1.28
@@ -44,7 +44,7 @@
       ++s;
       use_macbundle = true;
       }
-    else if(*s == "NOT_IN_ALL")
+    else if(*s == "EXCLUDE_FROM_ALL")
       {
       ++s;
       in_all = false;



More information about the Cmake-commits mailing list