2016-09-27 19:01:08 +00: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 13:48:39 +00:00
|
|
|
#ifndef cmTryRunCommand_h
|
|
|
|
#define cmTryRunCommand_h
|
|
|
|
|
2016-10-25 18:35:04 +00:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2007-05-24 15:27:51 +00:00
|
|
|
#include "cmCoreTryCompile.h"
|
2002-09-19 13:48:39 +00:00
|
|
|
|
2016-10-25 18:35:04 +00:00
|
|
|
class cmCommand;
|
|
|
|
class cmExecutionStatus;
|
|
|
|
|
2002-09-19 13:48:39 +00:00
|
|
|
/** \class cmTryRunCommand
|
|
|
|
* \brief Specifies where to install some files
|
|
|
|
*
|
|
|
|
* cmTryRunCommand is used to test if soucre code can be compiled
|
|
|
|
*/
|
2007-05-24 15:27:51 +00:00
|
|
|
class cmTryRunCommand : public cmCoreTryCompile
|
2002-09-19 13:48:39 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 19:25:27 +00:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmTryRunCommand; }
|
2002-09-19 13:48:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 19:25:27 +00:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2002-09-19 13:48:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 19:25:27 +00:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "try_run"; }
|
2002-09-19 13:48:39 +00:00
|
|
|
|
2007-06-01 15:16:29 +00:00
|
|
|
private:
|
2012-08-13 17:42:58 +00:00
|
|
|
void RunExecutable(const std::string& runArgs,
|
2007-07-20 12:36:16 +00:00
|
|
|
std::string* runOutputContents);
|
2012-08-13 17:42:58 +00:00
|
|
|
void DoNotRunExecutable(const std::string& runArgs,
|
|
|
|
const std::string& srcFile,
|
2007-07-20 12:36:16 +00:00
|
|
|
std::string* runOutputContents);
|
2002-09-19 13:48:39 +00:00
|
|
|
|
2007-06-01 15:16:29 +00:00
|
|
|
std::string CompileResultVariable;
|
|
|
|
std::string RunResultVariable;
|
|
|
|
std::string OutputVariable;
|
|
|
|
std::string RunOutputVariable;
|
|
|
|
std::string CompileOutputVariable;
|
2002-09-19 13:48:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|