summaryrefslogtreecommitdiffstats
path: root/Source/cmTryCompileCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-08-28 18:49:25 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-08-28 18:49:25 (GMT)
commit4855fe5c10841fd3641b7405522de3278732987f (patch)
treef3ebca587d28f064d7c5563d820861e4ac1ea106 /Source/cmTryCompileCommand.h
parent6046060714cf1c9098a843e65151f3ff27a40a7d (diff)
downloadCMake-4855fe5c10841fd3641b7405522de3278732987f.zip
CMake-4855fe5c10841fd3641b7405522de3278732987f.tar.gz
CMake-4855fe5c10841fd3641b7405522de3278732987f.tar.bz2
an early checking not complete
Diffstat (limited to 'Source/cmTryCompileCommand.h')
-rw-r--r--Source/cmTryCompileCommand.h78
1 files changed, 78 insertions, 0 deletions
diff --git a/Source/cmTryCompileCommand.h b/Source/cmTryCompileCommand.h
new file mode 100644
index 0000000..d029b1e
--- /dev/null
+++ b/Source/cmTryCompileCommand.h
@@ -0,0 +1,78 @@
+/*=========================================================================
+
+ Program: Insight Segmentation & Registration Toolkit
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+ Copyright (c) 2002 Insight Consortium. All rights reserved.
+ See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
+
+ This software is distributed WITHOUT ANY WARRANTY; without even
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE. See the above copyright notices for more information.
+
+=========================================================================*/
+#ifndef cmTryCompileCommand_h
+#define cmTryCompileCommand_h
+
+#include "cmStandardIncludes.h"
+#include "cmCommand.h"
+
+/** \class cmTryCompileCommand
+ * \brief Specifies where to install some files
+ *
+ * cmTryCompileCommand is used to test if soucre code can be compiled
+ */
+class cmTryCompileCommand : public cmCommand
+{
+public:
+ /**
+ * This is a virtual constructor for the command.
+ */
+ virtual cmCommand* Clone()
+ {
+ return new cmTryCompileCommand;
+ }
+
+ /**
+ * This is called when the command is first encountered in
+ * the CMakeLists.txt file.
+ */
+ virtual bool InitialPass(std::vector<std::string> const& args);
+
+ /**
+ * The name of the command as specified in CMakeList.txt.
+ */
+ virtual const char* GetName() { return "TRY_COMPILE";}
+
+ /**
+ * Succinct documentation.
+ */
+ virtual const char* GetTerseDocumentation()
+ {
+ return "Try compiling some code";
+ }
+
+
+ /**
+ * More documentation.
+ */
+ 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";
+ }
+
+ cmTypeMacro(cmTryCompileCommand, cmCommand);
+
+ private:
+ std::string m_TargetName;
+ std::vector<std::string> m_FinalArgs;
+};
+
+
+#endif