diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-11-17 16:39:02 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-11-17 16:39:02 (GMT) |
commit | 4d2ce04caa06c78d4985306f7f76e954eac3b870 (patch) | |
tree | 23d928c72286f44ef0862eba83deab408a1382ca /Source/cmTryCompileCommand.h | |
parent | f6ef36d8b267d886c355876a9aac6ab73888c7de (diff) | |
download | CMake-4d2ce04caa06c78d4985306f7f76e954eac3b870.zip CMake-4d2ce04caa06c78d4985306f7f76e954eac3b870.tar.gz CMake-4d2ce04caa06c78d4985306f7f76e954eac3b870.tar.bz2 |
STYLE: fix docs
Diffstat (limited to 'Source/cmTryCompileCommand.h')
-rw-r--r-- | Source/cmTryCompileCommand.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/cmTryCompileCommand.h b/Source/cmTryCompileCommand.h index b857da6..6a5c48c 100644 --- a/Source/cmTryCompileCommand.h +++ b/Source/cmTryCompileCommand.h @@ -77,28 +77,28 @@ 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. " + "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. " + "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 , " + "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 bindir/CMakeTmp " "are cleaned automatically. If OUTPUT_VARIABLE is specified, then the " "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: " - " ADD_DEFINITIONS( <expanded COMPILE_DEFINITIONS from calling cmake>" - " INCLUDE_DIRECTORIES(${INCLUDE_DIRECTORIES})" - " LINK_DIRECTORIES(${LINK_DIRECTORIES})" - " ADD_EXECUTABLE(cmTryCompileExec sources)" - " TARGET_LINK_LIBRARIES(cmTryCompileExec ${LINK_LIBRARIES})"; + "file on the fly, and in that file it looks like this:\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" + " TARGET_LINK_LIBRARIES(cmTryCompileExec ${LINK_LIBRARIES})\n"; } cmTypeMacro(cmTryCompileCommand, cmCommand); |