summaryrefslogtreecommitdiff
path: root/Source/cmUseMangledMesaCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-10-18 11:55:42 -0400
committerBrad King <brad.king@kitware.com>2013-10-22 09:09:51 -0400
commit97268cf5b7626febb06d04c2201ace397a4863fd (patch)
tree959cacfbee953a25a5cb3aad0cd53b5052a4aa40 /Source/cmUseMangledMesaCommand.h
parent9f64fbf5b5f128580639f14e232430194c9326f1 (diff)
downloadcmake-97268cf5b7626febb06d04c2201ace397a4863fd.tar.gz
Add policy CMP0030 to disallow use_mangled_mesa
Diffstat (limited to 'Source/cmUseMangledMesaCommand.h')
-rw-r--r--Source/cmUseMangledMesaCommand.h39
1 files changed, 2 insertions, 37 deletions
diff --git a/Source/cmUseMangledMesaCommand.h b/Source/cmUseMangledMesaCommand.h
index aac78142ca..dca75a5c7d 100644
--- a/Source/cmUseMangledMesaCommand.h
+++ b/Source/cmUseMangledMesaCommand.h
@@ -14,54 +14,19 @@
#include "cmCommand.h"
-#include "cmSourceFile.h"
-
-/** \class cmUseMangledMesaCommand
- * \brief Create Tcl Wrappers for VTK classes.
- *
- * cmUseMangledMesaCommand is used to define a CMake variable include
- * path location by specifying a file and list of directories.
- */
class cmUseMangledMesaCommand : public cmCommand
{
public:
cmTypeMacro(cmUseMangledMesaCommand, cmCommand);
-
- /**
- * This is a virtual constructor for the command.
- */
- virtual cmCommand* Clone()
- {
- return new cmUseMangledMesaCommand;
- }
-
- /**
- * This is called when the command is first encountered in
- * the CMakeLists.txt file.
- */
+ virtual cmCommand* Clone() { return new cmUseMangledMesaCommand; }
virtual bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus &status);
-
- /**
- * The name of the command as specified in CMakeList.txt.
- */
virtual const char* GetName() const { return "use_mangled_mesa";}
-
- /**
- * This determines if the command is invoked when in script mode.
- */
virtual bool IsScriptable() const { return true; }
-
- /** This command is kept for compatibility with older CMake versions. */
- virtual bool IsDiscouraged() const
- {
- return true;
- }
-
+ virtual bool IsDiscouraged() const { return true; }
protected:
void CopyAndFullPathMesaHeader(const char* source,
const char* outdir);
};
-
#endif