2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2002-09-19 09:48:39 -04:00
|
|
|
#ifndef cmTryRunCommand_h
|
|
|
|
#define cmTryRunCommand_h
|
|
|
|
|
2007-05-24 11:27:51 -04:00
|
|
|
#include "cmCoreTryCompile.h"
|
2002-09-19 09:48:39 -04:00
|
|
|
|
|
|
|
/** \class cmTryRunCommand
|
|
|
|
* \brief Specifies where to install some files
|
|
|
|
*
|
|
|
|
* cmTryRunCommand is used to test if soucre code can be compiled
|
|
|
|
*/
|
2007-05-24 11:27:51 -04:00
|
|
|
class cmTryRunCommand : public cmCoreTryCompile
|
2002-09-19 09:48:39 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmTryRunCommand; }
|
2002-09-19 09:48:39 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2002-09-19 09:48:39 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "try_run"; }
|
2002-09-19 09:48:39 -04:00
|
|
|
|
2007-05-24 11:27:51 -04:00
|
|
|
cmTypeMacro(cmTryRunCommand, cmCoreTryCompile);
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2007-06-01 11:16:29 -04:00
|
|
|
private:
|
2012-08-13 13:42:58 -04:00
|
|
|
void RunExecutable(const std::string& runArgs,
|
2007-07-20 08:36:16 -04:00
|
|
|
std::string* runOutputContents);
|
2012-08-13 13:42:58 -04:00
|
|
|
void DoNotRunExecutable(const std::string& runArgs,
|
|
|
|
const std::string& srcFile,
|
2007-07-20 08:36:16 -04:00
|
|
|
std::string* runOutputContents);
|
2002-09-19 09:48:39 -04:00
|
|
|
|
2007-06-01 11:16:29 -04:00
|
|
|
std::string CompileResultVariable;
|
|
|
|
std::string RunResultVariable;
|
|
|
|
std::string OutputVariable;
|
|
|
|
std::string RunOutputVariable;
|
|
|
|
std::string CompileOutputVariable;
|
2002-09-19 09:48:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|