2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-10-15 22:19:53 +04:00
|
|
|
#ifndef cmQTWrapCPPCommand_h
|
|
|
|
#define cmQTWrapCPPCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
2004-02-22 21:14:59 +03:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
|
2001-10-15 22:19:53 +04:00
|
|
|
/** \class cmQTWrapCPPCommand
|
2012-08-28 13:22:17 +04:00
|
|
|
* \brief Create moc file rules for Qt classes
|
2001-10-15 22:19:53 +04:00
|
|
|
*
|
2012-08-28 13:22:17 +04:00
|
|
|
* cmQTWrapCPPCommand is used to create wrappers for Qt classes into
|
2006-05-15 18:19:57 +04:00
|
|
|
* normal C++
|
2001-10-15 22:19:53 +04:00
|
|
|
*/
|
|
|
|
class cmQTWrapCPPCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2005-06-16 22:05:22 +04:00
|
|
|
cmTypeMacro(cmQTWrapCPPCommand, cmCommand);
|
|
|
|
|
2001-10-15 22:19:53 +04:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmQTWrapCPPCommand; }
|
2001-10-15 22:19:53 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
2001-10-15 22:19:53 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { return "qt_wrap_cpp"; }
|
2001-10-15 22:19:53 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|