diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:12:13 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 18:12:13 (GMT) |
commit | cac30b5ff8f7034b5290700a4dee28c84e001ac9 (patch) | |
tree | 1fce61b7bd143361ff8be6861fde27abb1732e10 /Source/cmTryCompileCommand.h | |
parent | daa37f116340fa86c1a511847fe65ad999095fa0 (diff) | |
download | CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.zip CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.tar.gz CMake-cac30b5ff8f7034b5290700a4dee28c84e001ac9.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmTryCompileCommand.h')
-rw-r--r-- | Source/cmTryCompileCommand.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Source/cmTryCompileCommand.h b/Source/cmTryCompileCommand.h index 8ff2b78..ed3e0c6 100644 --- a/Source/cmTryCompileCommand.h +++ b/Source/cmTryCompileCommand.h @@ -77,16 +77,16 @@ public: " TRY_COMPILE(RESULT_VAR bindir srcdir\n" " projectName <targetname> <CMAKE_FLAGS <Flags>>\n" " <OUTPUT_VARIABLE var>)\n" - "Try compiling a program. Return the success or failure in RESULT_VAR. " - "If <target name> is specified then build just that target " + "Try compiling a program. Return the success or failure in " + "RESULT_VAR. If <target name> is specified then build just that target " "otherwise the all or ALL_BUILD target is built.\n" " TRY_COMPILE(RESULT_VAR bindir srcfile\n" " <CMAKE_FLAGS <Flags>>\n" " <COMPILE_DEFINITIONS <flags> ...>\n" " <OUTPUT_VARIABLE var>)\n" - "Try compiling a srcfile. Return the success or failure in RESULT_VAR. " - "CMAKE_FLAGS can be used to pass -DVAR:TYPE=VALUE flags to cmake. Some " - "extra flags that can be included are, " + "Try compiling a srcfile. Return the success or failure in " + "RESULT_VAR. CMAKE_FLAGS can be used to pass -DVAR:TYPE=VALUE flags " + "to cmake. Some extra flags that can be included are, " "INCLUDE_DIRECTORIES, LINK_DIRECTORIES, and LINK_LIBRARIES. " "COMPILE_DEFINITIONS are -Ddefinition that will be passed to the " "compile line. If srcfile is specified the files in " @@ -95,7 +95,8 @@ public: "output from the build process is stored in the given variable. " "TRY_COMPILE creates a CMakeList.txt " "file on the fly, and in that file it looks like this:\n" - " ADD_DEFINITIONS( <expanded COMPILE_DEFINITIONS from calling cmake>)\n" + " ADD_DEFINITIONS( <expanded COMPILE_DEFINITIONS from calling " + "cmake>)\n" " INCLUDE_DIRECTORIES(${INCLUDE_DIRECTORIES})\n" " LINK_DIRECTORIES(${LINK_DIRECTORIES})\n" " ADD_EXECUTABLE(cmTryCompileExec sources)\n" |