cmGlobalVisualStudio14Generator.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2014 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmGlobalVisualStudio14Generator_h
  11. #define cmGlobalVisualStudio14Generator_h
  12. #include "cmGlobalVisualStudio12Generator.h"
  13. /** \class cmGlobalVisualStudio14Generator */
  14. class cmGlobalVisualStudio14Generator:
  15. public cmGlobalVisualStudio12Generator
  16. {
  17. public:
  18. cmGlobalVisualStudio14Generator(const std::string& name,
  19. const std::string& platformName);
  20. static cmGlobalGeneratorFactory* NewFactory();
  21. virtual bool MatchesGeneratorName(const std::string& name) const;
  22. virtual void WriteSLNHeader(std::ostream& fout);
  23. ///! create the correct local generator
  24. virtual cmLocalGenerator *CreateLocalGenerator(cmLocalGenerator* parent = 0);
  25. virtual const char* GetToolsVersion() { return "14.0"; }
  26. protected:
  27. virtual const char* GetIDEVersion() { return "14.0"; }
  28. private:
  29. class Factory;
  30. };
  31. #endif