diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmAuxSourceDirectoryRule.h | 4 | ||||
-rw-r--r-- | Source/cmIncludeDirectoryRule.h | 2 | ||||
-rw-r--r-- | Source/cmLinkLibrariesRule.h | 10 | ||||
-rw-r--r-- | Source/cmProjectRule.h | 4 | ||||
-rw-r--r-- | Source/cmSourceFilesRequireRule.h | 3 | ||||
-rw-r--r-- | Source/cmSubdirRule.h | 2 | ||||
-rw-r--r-- | Source/cmUnixDefinesRule.h | 4 | ||||
-rw-r--r-- | Source/cmWin32DefinesRule.h | 4 |
8 files changed, 17 insertions, 16 deletions
diff --git a/Source/cmAuxSourceDirectoryRule.h b/Source/cmAuxSourceDirectoryRule.h index 250d216..9f9a0ec 100644 --- a/Source/cmAuxSourceDirectoryRule.h +++ b/Source/cmAuxSourceDirectoryRule.h @@ -61,8 +61,8 @@ public: */ virtual const char* TerseDocumentation() { - return "Add all the source files found in the specified directory to\n" - " the build."; + return "Add all the source files found in the specified\n" + "directory to the build."; } /** diff --git a/Source/cmIncludeDirectoryRule.h b/Source/cmIncludeDirectoryRule.h index 58390fb..9d2980a 100644 --- a/Source/cmIncludeDirectoryRule.h +++ b/Source/cmIncludeDirectoryRule.h @@ -73,7 +73,7 @@ public: virtual const char* FullDocumentation() { return - "INCLUDE_DIRECTORIES(dir1 dir2 ...).\n"; + "INCLUDE_DIRECTORIES(dir1 dir2 ...)"; } }; diff --git a/Source/cmLinkLibrariesRule.h b/Source/cmLinkLibrariesRule.h index ea8c36e..a06bbf1 100644 --- a/Source/cmLinkLibrariesRule.h +++ b/Source/cmLinkLibrariesRule.h @@ -76,11 +76,11 @@ public: virtual const char* FullDocumentation() { return - "Specify a list of libraries to be linked into executables or \n" - "shared objects. This rule is passed down to all other rules." - "LINK_LIBRARIES(library1 library2).\n" - "The library name should be the same as the name used in the\n" - "LIBRARY(library) rule."; + "LINK_LIBRARIES(library1 library2)\n" + "Specify a list of libraries to be linked into\n" + "executables or shared objects. This rule is passed\n" + "down to all other rules. The library name should be\n" + "the same as the name used in the LIBRARY(library) rule."; } }; diff --git a/Source/cmProjectRule.h b/Source/cmProjectRule.h index ef9cb2d..0560ab1 100644 --- a/Source/cmProjectRule.h +++ b/Source/cmProjectRule.h @@ -68,8 +68,8 @@ public: virtual const char* FullDocumentation() { return - "Set the name for the entire project. This takes one argument.\n" - "PROJECT(projectname)"; + "PROJECT(projectname)\n" + "Set the name for the entire project. This takes one argument."; } }; diff --git a/Source/cmSourceFilesRequireRule.h b/Source/cmSourceFilesRequireRule.h index 845c72f..81ed5d1 100644 --- a/Source/cmSourceFilesRequireRule.h +++ b/Source/cmSourceFilesRequireRule.h @@ -61,7 +61,8 @@ public: */ virtual const char* TerseDocumentation() { - return "Add a list of source files if the required variables are set."; + return "Add a list of source files if the required \n" + "variables are set."; } /** diff --git a/Source/cmSubdirRule.h b/Source/cmSubdirRule.h index 1e081e8..ea26a59 100644 --- a/Source/cmSubdirRule.h +++ b/Source/cmSubdirRule.h @@ -68,8 +68,8 @@ public: virtual const char* FullDocumentation() { return - "Add a list of subdirectories to the build.\n" "SUBDIRS(dir1 dir2 ...)\n" + "Add a list of subdirectories to the build.\n" "This will cause any CMakeLists.txt files in the sub directories\n" "to be processed by CMake."; } diff --git a/Source/cmUnixDefinesRule.h b/Source/cmUnixDefinesRule.h index fcf0170..86e488f 100644 --- a/Source/cmUnixDefinesRule.h +++ b/Source/cmUnixDefinesRule.h @@ -78,8 +78,8 @@ public: virtual const char* FullDocumentation() { return - "Add -D flags to the command line for Unix only.\n" - "UNIX_DEFINES(-DFOO -DBAR)"; + "UNIX_DEFINES(-DFOO -DBAR)\n" + "Add -D flags to the command line for Unix only."; } }; diff --git a/Source/cmWin32DefinesRule.h b/Source/cmWin32DefinesRule.h index acb3019..fa03e4e 100644 --- a/Source/cmWin32DefinesRule.h +++ b/Source/cmWin32DefinesRule.h @@ -78,8 +78,8 @@ public: virtual const char* FullDocumentation() { return - "Add -D define flags to command line for Win32 environments.\n" - "WIN32_DEFINES(-DFOO -DBAR ...)"; + "WIN32_DEFINES(-DFOO -DBAR ...)\n" + "Add -D define flags to command line for Win32 environments."; } }; |