diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-09-10 20:52:56 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-09-10 20:52:56 (GMT) |
commit | 5608a9a129ce577f7f14f70dc7ff06c27ae92e3d (patch) | |
tree | 3f6757b0e81d61816605e148ffb304c83316f77d /Source/cmTryCompileCommand.h | |
parent | bea21587cf35f9d373314dd67c24b99fd0e11e49 (diff) | |
download | CMake-5608a9a129ce577f7f14f70dc7ff06c27ae92e3d.zip CMake-5608a9a129ce577f7f14f70dc7ff06c27ae92e3d.tar.gz CMake-5608a9a129ce577f7f14f70dc7ff06c27ae92e3d.tar.bz2 |
updated signature
Diffstat (limited to 'Source/cmTryCompileCommand.h')
-rw-r--r-- | Source/cmTryCompileCommand.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Source/cmTryCompileCommand.h b/Source/cmTryCompileCommand.h index d029b1e..4226da1 100644 --- a/Source/cmTryCompileCommand.h +++ b/Source/cmTryCompileCommand.h @@ -62,16 +62,14 @@ public: virtual const char* GetFullDocumentation() { return - "TRY_COMPILE(RESULT_VAR CMakeListFile )\n" - "TRY_COMPILE(RESULT_VAR sourceCode)\n" - "Try compiling a program. Return the success or failure in result"; + "TRY_COMPILE(RESULT_VAR srcdir bindir projectName <targetName>)\n" + "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."; } cmTypeMacro(cmTryCompileCommand, cmCommand); - private: - std::string m_TargetName; - std::vector<std::string> m_FinalArgs; }; |