2002-09-04 23:23:56 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-09-04 23:23:56 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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 above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmLocalVisualStudio7Generator_h
|
|
|
|
#define cmLocalVisualStudio7Generator_h
|
|
|
|
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
|
|
|
|
class cmMakeDepend;
|
|
|
|
class cmTarget;
|
|
|
|
class cmSourceFile;
|
2003-06-03 18:30:23 +04:00
|
|
|
class cmCustomCommand;
|
|
|
|
class cmSourceGroup;
|
2004-07-15 00:10:18 +04:00
|
|
|
struct cmVS7FlagTable;
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
/** \class cmLocalVisualStudio7Generator
|
|
|
|
* \brief Write a LocalUnix makefiles.
|
|
|
|
*
|
|
|
|
* cmLocalVisualStudio7Generator produces a LocalUnix makefile from its
|
|
|
|
* member m_Makefile.
|
|
|
|
*/
|
|
|
|
class cmLocalVisualStudio7Generator : public cmLocalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///! Set cache only and recurse to false by default.
|
|
|
|
cmLocalVisualStudio7Generator();
|
|
|
|
|
|
|
|
virtual ~cmLocalVisualStudio7Generator();
|
|
|
|
|
|
|
|
/**
|
2005-03-18 18:41:41 +03:00
|
|
|
* Generate the makefile for this directory.
|
2002-09-04 23:23:56 +04:00
|
|
|
*/
|
2005-03-18 18:41:41 +03: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 char *name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return array of created DSP names in a STL vector.
|
|
|
|
* Each executable must have its own dsp.
|
|
|
|
*/
|
|
|
|
std::vector<std::string> GetCreatedProjectNames()
|
|
|
|
{
|
|
|
|
return m_CreatedProjectNames;
|
|
|
|
}
|
2004-07-05 20:16:33 +04:00
|
|
|
void SetVersion71() {m_Version = 71;}
|
|
|
|
void SetVersion8() {m_Version = 8;}
|
2004-05-21 00:29:09 +04:00
|
|
|
virtual void ConfigureFinalPass();
|
2002-09-04 23:23:56 +04:00
|
|
|
private:
|
2004-07-15 00:10:18 +04:00
|
|
|
void FillFlagMapFromCommandFlags(std::map<cmStdString, cmStdString>& flagMap,
|
|
|
|
cmVS7FlagTable* flagTable,
|
|
|
|
std::string& flags);
|
2006-01-27 21:48:21 +03:00
|
|
|
std::string GetBuildTypeLinkerFlags(std::string rootLinkerFlags,
|
|
|
|
const char* configName);
|
2002-09-04 23:23:56 +04:00
|
|
|
void OutputVCProjFile();
|
|
|
|
void WriteVCProjHeader(std::ostream& fout, const char *libName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteVCProjFooter(std::ostream& fout);
|
|
|
|
void CreateSingleVCProj(const char *lname, cmTarget &tgt);
|
|
|
|
void WriteVCProjFile(std::ostream& fout, const char *libName,
|
|
|
|
cmTarget &tgt);
|
2003-06-03 18:30:23 +04:00
|
|
|
void AddVCProjBuildRule();
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteConfigurations(std::ostream& fout,
|
2005-06-22 17:06:46 +04:00
|
|
|
const char *libName, cmTarget &tgt);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteConfiguration(std::ostream& fout,
|
|
|
|
const char* configName,
|
2005-06-22 17:06:46 +04:00
|
|
|
const char* libName, cmTarget &tgt);
|
2003-02-07 22:04:16 +03:00
|
|
|
std::string EscapeForXML(const char* s);
|
2002-09-04 23:23:56 +04:00
|
|
|
std::string ConvertToXMLOutputPath(const char* path);
|
|
|
|
std::string ConvertToXMLOutputPathSingle(const char* path);
|
2005-02-10 07:25:09 +03:00
|
|
|
void OutputDefineFlags(const char* flags,
|
|
|
|
std::ostream& fout);
|
2005-06-22 17:06:46 +04:00
|
|
|
void OutputTargetRules(std::ostream& fout, cmTarget &target,
|
2002-09-04 23:23:56 +04:00
|
|
|
const char *libName);
|
|
|
|
void OutputBuildTool(std::ostream& fout, const char* configName,
|
2005-06-22 17:06:46 +04:00
|
|
|
const char* libname, cmTarget& t);
|
2002-09-04 23:23:56 +04:00
|
|
|
void OutputLibraries(std::ostream& fout,
|
2006-01-14 02:18:32 +03:00
|
|
|
std::vector<cmStdString> const& libs);
|
2002-09-04 23:23:56 +04:00
|
|
|
void OutputLibraryDirectories(std::ostream& fout,
|
2006-01-14 02:18:32 +03:00
|
|
|
std::vector<cmStdString> const& dirs);
|
2005-06-22 17:06:46 +04:00
|
|
|
void OutputModuleDefinitionFile(std::ostream& fout, cmTarget &target);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteProjectStart(std::ostream& fout, const char *libName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteVCProjBeginGroup(std::ostream& fout,
|
2002-10-24 02:03:27 +04:00
|
|
|
const char* group,
|
|
|
|
const char* filter);
|
2002-09-04 23:23:56 +04:00
|
|
|
void WriteVCProjEndGroup(std::ostream& fout);
|
|
|
|
void WriteCustomRule(std::ostream& fout,
|
|
|
|
const char* source,
|
|
|
|
const char* command,
|
2002-12-11 01:43:34 +03:00
|
|
|
const char* comment,
|
2003-06-03 18:30:23 +04:00
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const char* output,
|
2002-09-04 23:23:56 +04:00
|
|
|
const char* extraFlags);
|
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
void WriteGroup(const cmSourceGroup *sg, cmTarget target, std::ostream &fout, const char *libName, std::vector<std::string> *configs);
|
2005-07-27 21:36:36 +04:00
|
|
|
virtual std::string GetTargetDirectory(cmTarget&);
|
2005-07-13 19:21:30 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
std::vector<std::string> m_CreatedProjectNames;
|
|
|
|
std::string m_LibraryOutputPath;
|
|
|
|
std::string m_ExecutableOutputPath;
|
|
|
|
std::string m_ModuleDefinitionFile;
|
2004-07-05 20:16:33 +04:00
|
|
|
int m_Version;
|
2002-09-04 23:23:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|