CMake/Source/cmLocalVisualStudio7Generat...

130 lines
5.0 KiB
C
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2002-09-04 23:23:56 +04:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2002-09-04 23:23:56 +04:00
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
2002-09-04 23:23:56 +04:00
#ifndef cmLocalVisualStudio7Generator_h
#define cmLocalVisualStudio7Generator_h
#include "cmLocalVisualStudioGenerator.h"
#include "cmVisualStudioGeneratorOptions.h"
2002-09-04 23:23:56 +04:00
class cmTarget;
class cmSourceFile;
2003-06-03 18:30:23 +04:00
class cmCustomCommand;
class cmSourceGroup;
2002-09-04 23:23:56 +04:00
class cmLocalVisualStudio7GeneratorOptions;
class cmLocalVisualStudio7GeneratorFCInfo;
class cmLocalVisualStudio7GeneratorInternals;
2002-09-04 23:23:56 +04:00
/** \class cmLocalVisualStudio7Generator
* \brief Write Visual Studio .NET project files.
2002-09-04 23:23:56 +04:00
*
* cmLocalVisualStudio7Generator produces a Visual Studio .NET project
* file for each target in its directory.
2002-09-04 23:23:56 +04:00
*/
class cmLocalVisualStudio7Generator : public cmLocalVisualStudioGenerator
2002-09-04 23:23:56 +04:00
{
public:
///! Set cache only and recurse to false by default.
cmLocalVisualStudio7Generator(cmGlobalGenerator* gg, cmMakefile* mf);
2002-09-04 23:23:56 +04:00
virtual ~cmLocalVisualStudio7Generator();
virtual void AddHelperCommands();
2002-09-04 23:23:56 +04:00
/**
* Generate the makefile for this directory.
2002-09-04 23:23:56 +04:00
*/
virtual void Generate();
2002-09-04 23:23:56 +04:00
enum BuildType {STATIC_LIBRARY, DLL, EXECUTABLE, WIN32_EXECUTABLE, UTILITY};
/**
* Specify the type of the build: static, dll, or executable.
*/
void SetBuildType(BuildType,const std::string& name);
2002-09-04 23:23:56 +04:00
virtual std::string GetTargetDirectory(cmTarget const&) const;
cmSourceFile* CreateVCProjBuildRule();
void WriteStampFiles();
virtual std::string ComputeLongestObjectDirectory(cmTarget&) const;
virtual void ReadAndStoreExternalGUID(const std::string& name,
const char* path);
virtual void AddCMakeListsRules();
protected:
void CreateSingleVCProj(const std::string& lname, cmTarget &tgt);
2002-09-04 23:23:56 +04:00
private:
typedef cmVisualStudioGeneratorOptions Options;
typedef cmLocalVisualStudio7GeneratorFCInfo FCInfo;
std::string GetBuildTypeLinkerFlags(std::string rootLinkerFlags,
const std::string& configName);
void FixGlobalTargets();
void WriteProjectFiles();
2014-02-07 02:31:47 +04:00
void WriteVCProjHeader(std::ostream& fout, const std::string& libName,
cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
void WriteVCProjFooter(std::ostream& fout, cmTarget &target);
2014-02-07 02:31:47 +04:00
void WriteVCProjFile(std::ostream& fout, const std::string& libName,
2002-09-04 23:23:56 +04:00
cmTarget &tgt);
void WriteConfigurations(std::ostream& fout,
std::vector<std::string> const& configs,
2014-02-07 02:31:47 +04:00
const std::string& libName, cmTarget &tgt);
2002-09-04 23:23:56 +04:00
void WriteConfiguration(std::ostream& fout,
const std::string& configName,
2014-02-07 02:31:47 +04:00
const std::string& libName, cmTarget &tgt);
std::string EscapeForXML(const std::string& s);
2002-09-04 23:23:56 +04:00
std::string ConvertToXMLOutputPath(const char* path);
std::string ConvertToXMLOutputPathSingle(const char* path);
void OutputTargetRules(std::ostream& fout, const std::string& configName,
2014-02-07 02:31:47 +04:00
cmTarget &target, const std::string& libName);
void OutputBuildTool(std::ostream& fout, const std::string& configName,
cmTarget& t, const Options& targetOptions);
2002-09-04 23:23:56 +04:00
void OutputLibraryDirectories(std::ostream& fout,
std::vector<std::string> const& dirs);
void WriteProjectSCC(std::ostream& fout, cmTarget& target);
2014-02-07 02:31:47 +04:00
void WriteProjectStart(std::ostream& fout, const std::string& libName,
cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
2014-02-07 02:31:47 +04:00
void WriteProjectStartFortran(std::ostream& fout, const std::string& libName,
cmTarget &tgt);
void WriteVCProjBeginGroup(std::ostream& fout,
const char* group,
const char* filter);
2002-09-04 23:23:56 +04:00
void WriteVCProjEndGroup(std::ostream& fout);
2002-09-04 23:23:56 +04:00
void WriteCustomRule(std::ostream& fout,
std::vector<std::string> const& configs,
2002-09-04 23:23:56 +04:00
const char* source,
const cmCustomCommand& command,
FCInfo& fcinfo);
void WriteTargetVersionAttribute(std::ostream& fout, cmTarget& target);
2002-09-04 23:23:56 +04:00
bool WriteGroup(const cmSourceGroup *sg,
cmTarget& target, std::ostream &fout,
2014-02-07 02:31:47 +04:00
const std::string& libName,
std::vector<std::string> const& configs);
2005-07-13 19:21:30 +04:00
friend class cmLocalVisualStudio7GeneratorFCInfo;
friend class cmLocalVisualStudio7GeneratorInternals;
class EventWriter;
friend class EventWriter;
2006-03-15 19:02:08 +03:00
std::string ModuleDefinitionFile;
bool FortranProject;
bool WindowsCEProject;
cmLocalVisualStudio7GeneratorInternals* Internal;
2002-09-04 23:23:56 +04:00
};
2002-09-04 23:23:56 +04:00
#endif