cmake/Source/cmGlobalVisualStudio71Generator.h

46 lines
1.9 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmGlobalVisualStudio71Generator_h
#define cmGlobalVisualStudio71Generator_h
#include "cmGlobalVisualStudio7Generator.h"
/** \class cmGlobalVisualStudio71Generator
* \brief Write a Unix makefiles.
*
* cmGlobalVisualStudio71Generator manages UNIX build process for a tree
*/
class cmGlobalVisualStudio71Generator : public cmGlobalVisualStudio7Generator
{
public:
2015-08-17 11:37:30 +02:00
cmGlobalVisualStudio71Generator(cmake* cm,
const std::string& platformName = "");
protected:
2018-04-23 21:13:27 +02:00
void WriteSLNFile(std::ostream& fout, cmLocalGenerator* root,
std::vector<cmLocalGenerator*>& generators) override;
2015-08-17 11:37:30 +02:00
virtual void WriteSolutionConfigurations(
std::ostream& fout, std::vector<std::string> const& configs);
2018-04-23 21:13:27 +02:00
void WriteProject(std::ostream& fout, const std::string& name,
2020-08-30 11:54:41 +02:00
const std::string& path,
const cmGeneratorTarget* t) override;
2018-04-23 21:13:27 +02:00
void WriteProjectDepends(std::ostream& fout, const std::string& name,
2020-08-30 11:54:41 +02:00
const std::string& path,
2018-04-23 21:13:27 +02:00
cmGeneratorTarget const* t) override;
void WriteProjectConfigurations(
2017-07-20 19:35:53 +02:00
std::ostream& fout, const std::string& name,
cmGeneratorTarget const& target, std::vector<std::string> const& configs,
2013-03-16 19:13:01 +02:00
const std::set<std::string>& configsPartOfDefaultBuild,
2018-04-23 21:13:27 +02:00
const std::string& platformMapping = "") override;
2020-08-30 11:54:41 +02:00
void WriteExternalProject(
std::ostream& fout, const std::string& name, const std::string& path,
const char* typeGuid,
const std::set<BT<std::pair<std::string, bool>>>& depends) override;
2016-07-09 11:21:54 +02:00
// Folders are not supported by VS 7.1.
2019-11-11 23:01:05 +01:00
bool UseFolderProperty() const override { return false; }
2016-07-09 11:21:54 +02:00
std::string ProjectConfigurationSectionName;
};
#endif