[Cmake-commits] [cmake-commits] martink committed cmAddExecutableCommand.h 1.21 1.22 cmAddLibraryCommand.h 1.23 1.24 cmDefinePropertyCommand.h 1.7 1.8 cmDocumentVariables.cxx 1.40 1.41 cmEnableLanguageCommand.h 1.8 1.9 cmFindCommon.cxx 1.6 1.7 cmListCommand.h 1.15 1.16 cmSetCommand.h 1.21 1.22 cmSetDirectoryPropertiesCommand.h 1.7 1.8 cmSubdirCommand.h 1.21 1.22 cmTryRunCommand.h 1.15 1.16

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Sep 3 15:29:31 EDT 2009


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

Modified Files:
	cmAddExecutableCommand.h cmAddLibraryCommand.h 
	cmDefinePropertyCommand.h cmDocumentVariables.cxx 
	cmEnableLanguageCommand.h cmFindCommon.cxx cmListCommand.h 
	cmSetCommand.h cmSetDirectoryPropertiesCommand.h 
	cmSubdirCommand.h cmTryRunCommand.h 
Log Message:
some white space fixes for the book


Index: cmSetDirectoryPropertiesCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmSetDirectoryPropertiesCommand.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C 2 -d -r1.7 -r1.8
*** cmSetDirectoryPropertiesCommand.h	23 Jan 2008 15:27:59 -0000	1.7
--- cmSetDirectoryPropertiesCommand.h	3 Sep 2009 19:29:29 -0000	1.8
***************
*** 71,75 ****
          "property is not found, CMake will report an error. The properties "
          "include: INCLUDE_DIRECTORIES, LINK_DIRECTORIES, "
!         "INCLUDE_REGULAR_EXPRESSION, and ADDITIONAL_MAKE_CLEAN_FILES.\n"
          "ADDITIONAL_MAKE_CLEAN_FILES is a list of files that will be cleaned "
          "as a part of \"make clean\" stage.";
--- 71,75 ----
          "property is not found, CMake will report an error. The properties "
          "include: INCLUDE_DIRECTORIES, LINK_DIRECTORIES, "
!         "INCLUDE_REGULAR_EXPRESSION, and ADDITIONAL_MAKE_CLEAN_FILES. "
          "ADDITIONAL_MAKE_CLEAN_FILES is a list of files that will be cleaned "
          "as a part of \"make clean\" stage.";

Index: cmFindCommon.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmFindCommon.cxx,v
retrieving revision 1.6
retrieving revision 1.7
diff -C 2 -d -r1.6 -r1.7
*** cmFindCommon.cxx	3 Oct 2008 12:16:37 -0000	1.6
--- cmFindCommon.cxx	3 Sep 2009 19:29:29 -0000	1.7
***************
*** 50,54 ****
      "              libraries or headers.\n"
      "   \"ONLY\"   - Only try to find frameworks.\n"
!     "   \"NEVER\". - Never try to find frameworks.\n"
      "On Darwin or systems supporting OS X Application Bundles, the cmake "
      "variable CMAKE_FIND_APPBUNDLE can be set to empty or one of the "
--- 50,54 ----
      "              libraries or headers.\n"
      "   \"ONLY\"   - Only try to find frameworks.\n"
!     "   \"NEVER\" - Never try to find frameworks.\n"
      "On Darwin or systems supporting OS X Application Bundles, the cmake "
      "variable CMAKE_FIND_APPBUNDLE can be set to empty or one of the "
***************
*** 59,63 ****
      "              programs.\n"
      "   \"ONLY\"   - Only try to find application bundles.\n"
!     "   \"NEVER\". - Never try to find application bundles.\n";
    this->GenericDocumentationRootPath =
      "The CMake variable CMAKE_FIND_ROOT_PATH specifies one or more "
--- 59,63 ----
      "              programs.\n"
      "   \"ONLY\"   - Only try to find application bundles.\n"
!     "   \"NEVER\" - Never try to find application bundles.\n";
    this->GenericDocumentationRootPath =
      "The CMake variable CMAKE_FIND_ROOT_PATH specifies one or more "

Index: cmTryRunCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTryRunCommand.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -C 2 -d -r1.15 -r1.16
*** cmTryRunCommand.h	23 Jan 2008 15:27:59 -0000	1.15
--- cmTryRunCommand.h	3 Sep 2009 19:29:29 -0000	1.16
***************
*** 78,82 ****
        "where the output from the running executable goes.\n"
        "For compatibility reasons OUTPUT_VARIABLE is still supported, which "
!       "gives you the output from the compile and run step combined.\n\n"
        "Cross compiling issues\n"
        "When cross compiling, the executable compiled in the first step "
--- 78,82 ----
        "where the output from the running executable goes.\n"
        "For compatibility reasons OUTPUT_VARIABLE is still supported, which "
!       "gives you the output from the compile and run step combined.\n"
        "Cross compiling issues\n"
        "When cross compiling, the executable compiled in the first step "

Index: cmSubdirCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmSubdirCommand.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -C 2 -d -r1.21 -r1.22
*** cmSubdirCommand.h	23 Jan 2008 15:27:59 -0000	1.21
--- cmSubdirCommand.h	3 Sep 2009 19:29:29 -0000	1.22
***************
*** 66,70 ****
        "Add a list of subdirectories to the build.\n"
        "  subdirs(dir1 dir2 ..."
!       "[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...] [PREORDER] )\n"
        "Add a list of subdirectories to the build. The add_subdirectory "
        "command should be used instead of subdirs although subdirs will "
--- 66,71 ----
        "Add a list of subdirectories to the build.\n"
        "  subdirs(dir1 dir2 ..."
!       "[EXCLUDE_FROM_ALL exclude_dir1 exclude_dir2 ...]\n
!       "          [PREORDER] )\n"
        "Add a list of subdirectories to the build. The add_subdirectory "
        "command should be used instead of subdirs although subdirs will "

Index: cmSetCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmSetCommand.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -C 2 -d -r1.21 -r1.22
*** cmSetCommand.h	25 Aug 2008 14:31:28 -0000	1.21
--- cmSetCommand.h	3 Sep 2009 19:29:29 -0000	1.22
***************
*** 67,72 ****
      {
      return
!       "  set(<variable> <value> [[CACHE <type> <docstring> [FORCE]] | "
!       "PARENT_SCOPE])\n"
        "Within CMake sets <variable> to the value <value>.  <value> is expanded"
        "  before <variable> is set to it.  If CACHE is present, then the "
--- 67,72 ----
      {
      return
!       "  set(<variable> <value>\n"
!       "      [[CACHE <type> <docstring> [FORCE]] | PARENT_SCOPE])\n"
        "Within CMake sets <variable> to the value <value>.  <value> is expanded"
        "  before <variable> is set to it.  If CACHE is present, then the "

Index: cmDocumentVariables.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDocumentVariables.cxx,v
retrieving revision 1.40
retrieving revision 1.41
diff -C 2 -d -r1.40 -r1.41
*** cmDocumentVariables.cxx	20 Aug 2009 20:21:48 -0000	1.40
--- cmDocumentVariables.cxx	3 Sep 2009 19:29:29 -0000	1.41
***************
*** 633,637 ****
       "studio 6 and 7 project files.   The CMakeSetup "
       "dialog uses MFC and the CMakeLists.txt looks like this:\n"
!      "ADD_DEFINITIONS(-D_AFXDLL)\n"
       "set(CMAKE_MFC_FLAG 2)\n"
       "add_executable(CMakeSetup WIN32 ${SRCS})\n",false,
--- 633,637 ----
       "studio 6 and 7 project files.   The CMakeSetup "
       "dialog uses MFC and the CMakeLists.txt looks like this:\n"
!      "add_definitions(-D_AFXDLL)\n"
       "set(CMAKE_MFC_FLAG 2)\n"
       "add_executable(CMakeSetup WIN32 ${SRCS})\n",false,

Index: cmDefinePropertyCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDefinePropertyCommand.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C 2 -d -r1.7 -r1.8
*** cmDefinePropertyCommand.h	15 Jun 2009 20:12:27 -0000	1.7
--- cmDefinePropertyCommand.h	3 Sep 2009 19:29:29 -0000	1.8
***************
*** 69,73 ****
          "  TARGET    = associated with one target\n"
          "  SOURCE    = associated with one source file\n"
!         "  TEST      = associated with a test named with add_test command\n"
          "  VARIABLE  = documents a CMake language variable\n"
          "  CACHED_VARIABLE = documents a CMake cache variable\n"
--- 69,73 ----
          "  TARGET    = associated with one target\n"
          "  SOURCE    = associated with one source file\n"
!         "  TEST      = associated with a test named with add_test\n"
          "  VARIABLE  = documents a CMake language variable\n"
          "  CACHED_VARIABLE = documents a CMake cache variable\n"

Index: cmAddLibraryCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmAddLibraryCommand.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -C 2 -d -r1.23 -r1.24
*** cmAddLibraryCommand.h	18 Aug 2008 15:39:22 -0000	1.23
--- cmAddLibraryCommand.h	3 Sep 2009 19:29:29 -0000	1.24
***************
*** 63,67 ****
      {
      return
!       "  add_library(<name> [STATIC | SHARED | MODULE] [EXCLUDE_FROM_ALL]\n"
        "              source1 source2 ... sourceN)\n"
        "Adds a library target called <name> to be built from the "
--- 63,68 ----
      {
      return
!       "  add_library(<name> [STATIC | SHARED | MODULE]\n"
!       "              [EXCLUDE_FROM_ALL]\n"
        "              source1 source2 ... sourceN)\n"
        "Adds a library target called <name> to be built from the "

Index: cmAddExecutableCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmAddExecutableCommand.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -C 2 -d -r1.21 -r1.22
*** cmAddExecutableCommand.h	11 Feb 2008 18:35:39 -0000	1.21
--- cmAddExecutableCommand.h	3 Sep 2009 19:29:29 -0000	1.22
***************
*** 64,68 ****
      {
      return
!       "  add_executable(<name> [WIN32] [MACOSX_BUNDLE] [EXCLUDE_FROM_ALL]\n"
        "                 source1 source2 ... sourceN)\n"
        "Adds an executable target called <name> to be built from the "
--- 64,69 ----
      {
      return
!       "  add_executable(<name> [WIN32] [MACOSX_BUNDLE]\n"
!       "                 [EXCLUDE_FROM_ALL]\n"
        "                 source1 source2 ... sourceN)\n"
        "Adds an executable target called <name> to be built from the "

Index: cmEnableLanguageCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmEnableLanguageCommand.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C 2 -d -r1.8 -r1.9
*** cmEnableLanguageCommand.h	23 Jan 2008 15:27:59 -0000	1.8
--- cmEnableLanguageCommand.h	3 Sep 2009 19:29:29 -0000	1.9
***************
*** 69,73 ****
        "This is the same as the project command but does not create "
        "any of the extra variables that are created by the project command. "
!       "Example languages are CXX, C, Fortran.\n"
        "If OPTIONAL is used, use the CMAKE_<languageName>_COMPILER_WORKS "
        "variable to check whether the language has been enabled successfully.";
--- 69,73 ----
        "This is the same as the project command but does not create "
        "any of the extra variables that are created by the project command. "
!       "Example languages are CXX, C, Fortran. "
        "If OPTIONAL is used, use the CMAKE_<languageName>_COMPILER_WORKS "
        "variable to check whether the language has been enabled successfully.";

Index: cmListCommand.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmListCommand.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -C 2 -d -r1.15 -r1.16
*** cmListCommand.h	12 Mar 2008 21:02:10 -0000	1.15
--- cmListCommand.h	3 Sep 2009 19:29:29 -0000	1.16
***************
*** 67,72 ****
      return
        "  list(LENGTH <list> <output variable>)\n"
!       "  list(GET <list> <element index> [<element index> ...] "
!       "<output variable>)\n"
        "  list(APPEND <list> <element> [<element> ...])\n"
        "  list(FIND <list> <value> <output variable>)\n"
--- 67,72 ----
      return
        "  list(LENGTH <list> <output variable>)\n"
!       "  list(GET <list> <element index> [<element index> ...]\n"
!       "       <output variable>)\n"
        "  list(APPEND <list> <element> [<element> ...])\n"
        "  list(FIND <list> <value> <output variable>)\n"



More information about the Cmake-commits mailing list