2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2003-05-08 20:59:27 +00:00
|
|
|
#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-05-24 09:31:14 +00:00
|
|
|
cmGlobalVisualStudio71Generator(cmake* cm,
|
|
|
|
const std::string& platformName = "");
|
2008-02-15 16:49:58 +00:00
|
|
|
|
2003-05-08 20:59:27 +00:00
|
|
|
protected:
|
2017-12-16 02:17:49 +00:00
|
|
|
void WriteSLNFile(std::ostream& fout, cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators) override;
|
2015-05-20 17:55:21 +00:00
|
|
|
virtual void WriteSolutionConfigurations(
|
|
|
|
std::ostream& fout, std::vector<std::string> const& configs);
|
2017-12-16 02:17:49 +00:00
|
|
|
void WriteProject(std::ostream& fout, const std::string& name,
|
|
|
|
const char* path, const cmGeneratorTarget* t) override;
|
|
|
|
void WriteProjectDepends(std::ostream& fout, const std::string& name,
|
|
|
|
const char* path,
|
|
|
|
cmGeneratorTarget const* t) override;
|
|
|
|
void WriteProjectConfigurations(
|
2017-04-04 19:12:26 +00:00
|
|
|
std::ostream& fout, const std::string& name,
|
|
|
|
cmGeneratorTarget const& target, std::vector<std::string> const& configs,
|
2012-10-11 19:57:22 +00:00
|
|
|
const std::set<std::string>& configsPartOfDefaultBuild,
|
2017-12-16 02:17:49 +00:00
|
|
|
const std::string& platformMapping = "") override;
|
|
|
|
void WriteExternalProject(std::ostream& fout, const std::string& name,
|
|
|
|
const char* path, const char* typeGuid,
|
2018-10-17 14:25:20 +00:00
|
|
|
const std::set<BT<std::string>>& depends) override;
|
2006-02-14 20:35:34 +00:00
|
|
|
|
2016-04-26 12:22:27 +00:00
|
|
|
// Folders are not supported by VS 7.1.
|
2018-12-30 17:32:55 +00:00
|
|
|
bool UseFolderProperty() const override { return false; }
|
2016-04-26 12:22:27 +00:00
|
|
|
|
2006-03-15 16:02:08 +00:00
|
|
|
std::string ProjectConfigurationSectionName;
|
2003-05-08 20:59:27 +00:00
|
|
|
};
|
|
|
|
#endif
|