diff options
author | Brad King <brad.king@kitware.com> | 2013-10-18 15:55:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-22 13:09:51 (GMT) |
commit | 97268cf5b7626febb06d04c2201ace397a4863fd (patch) | |
tree | 959cacfbee953a25a5cb3aad0cd53b5052a4aa40 /Source/cmUseMangledMesaCommand.h | |
parent | 9f64fbf5b5f128580639f14e232430194c9326f1 (diff) | |
download | CMake-97268cf5b7626febb06d04c2201ace397a4863fd.zip CMake-97268cf5b7626febb06d04c2201ace397a4863fd.tar.gz CMake-97268cf5b7626febb06d04c2201ace397a4863fd.tar.bz2 |
Add policy CMP0030 to disallow use_mangled_mesa
Diffstat (limited to 'Source/cmUseMangledMesaCommand.h')
-rw-r--r-- | Source/cmUseMangledMesaCommand.h | 39 |
1 files changed, 2 insertions, 37 deletions
diff --git a/Source/cmUseMangledMesaCommand.h b/Source/cmUseMangledMesaCommand.h index aac7814..dca75a5 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 |