2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2009-09-28 19:43:28 +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
|
|
|
|
2009-09-28 19:43:28 +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 cmGlobalVisualStudio7Generator_h
|
|
|
|
#define cmGlobalVisualStudio7Generator_h
|
|
|
|
|
2007-04-04 19:22:14 +04:00
|
|
|
#include "cmGlobalVisualStudioGenerator.h"
|
2012-11-19 18:48:33 +04:00
|
|
|
#include "cmGlobalGeneratorFactory.h"
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
class cmTarget;
|
2009-07-29 19:28:55 +04:00
|
|
|
struct cmIDEFlagTable;
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio7Generator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudio7Generator manages UNIX build process for a tree
|
|
|
|
*/
|
2007-04-04 19:22:14 +04:00
|
|
|
class cmGlobalVisualStudio7Generator : public cmGlobalVisualStudioGenerator
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalVisualStudio7Generator(cmake* cm,
|
|
|
|
const std::string& platformName = "");
|
2013-10-16 23:48:44 +04:00
|
|
|
~cmGlobalVisualStudio7Generator();
|
|
|
|
|
2012-11-19 18:48:33 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<cmGlobalVisualStudio7Generator>(); }
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
///! Get the name for the generator.
|
2014-02-25 02:36:27 +04:00
|
|
|
virtual std::string GetName() const {
|
2002-09-04 23:23:56 +04:00
|
|
|
return cmGlobalVisualStudio7Generator::GetActualName();}
|
2014-02-25 02:36:27 +04:00
|
|
|
static std::string GetActualName() {return "Visual Studio 7";}
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2013-08-05 14:49:32 +04:00
|
|
|
///! Get the name for the platform.
|
2014-09-05 22:02:58 +04:00
|
|
|
std::string const& GetPlatformName() const;
|
2013-08-05 14:49:32 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
2015-05-24 12:50:55 +03:00
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator(cmLocalGenerator* parent,
|
|
|
|
cmState::Snapshot snapshot);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2014-07-18 00:34:21 +04:00
|
|
|
virtual bool SetSystemName(std::string const& s, cmMakefile* mf);
|
2013-08-05 14:49:32 +04:00
|
|
|
|
2014-09-05 22:53:01 +04:00
|
|
|
virtual bool SetGeneratorPlatform(std::string const& p, cmMakefile* mf);
|
|
|
|
|
2003-07-08 05:52:10 +04:00
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 19:42:24 +04:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
/**
|
2014-10-10 03:22:45 +04:00
|
|
|
* Try to determine system information such as shared library
|
2011-10-13 21:51:18 +04:00
|
|
|
* extension, pthreads, byte order etc.
|
2002-09-04 23:23:56 +04:00
|
|
|
*/
|
2011-10-13 21:51:18 +04:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 17:09:26 +04:00
|
|
|
cmMakefile *, bool optional);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
/**
|
2011-03-19 13:41:00 +03:00
|
|
|
* Try running cmake and building a file. This is used for dynamically
|
2002-09-04 23:23:56 +04:00
|
|
|
* loaded commands, not as part of the usual build process.
|
|
|
|
*/
|
2013-11-15 22:33:32 +04:00
|
|
|
virtual void GenerateBuildCommand(
|
|
|
|
std::vector<std::string>& makeCommand,
|
2014-02-25 02:38:55 +04:00
|
|
|
const std::string& makeProgram,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& projectName,
|
2014-02-25 02:38:30 +04:00
|
|
|
const std::string& projectDir,
|
2014-02-07 02:31:47 +04:00
|
|
|
const std::string& targetName,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config,
|
2015-02-26 13:32:26 +03:00
|
|
|
bool fast, bool verbose,
|
2013-11-15 22:33:32 +04:00
|
|
|
std::vector<std::string> const& makeOptions = std::vector<std::string>()
|
|
|
|
);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the DSW workspace file.
|
|
|
|
*/
|
|
|
|
virtual void OutputSLNFile();
|
|
|
|
|
2015-06-02 18:49:07 +03:00
|
|
|
///! Lookup a stored GUID or compute one deterministically.
|
|
|
|
std::string GetGUID(std::string const& name);
|
2004-05-21 00:29:09 +04:00
|
|
|
|
2006-02-03 19:36:11 +03:00
|
|
|
/** Append the subdirectory for the given configuration. */
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void AppendDirectoryForConfig(const std::string& prefix,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config,
|
2014-02-22 04:05:55 +04:00
|
|
|
const std::string& suffix,
|
2006-03-03 20:58:48 +03:00
|
|
|
std::string& dir);
|
2006-02-03 19:36:11 +03:00
|
|
|
|
2006-02-25 01:35:35 +03:00
|
|
|
///! What is the configurations directory variable called?
|
2015-02-16 19:11:37 +03:00
|
|
|
virtual const char* GetCMakeCFGIntDir() const
|
|
|
|
{ return "$(ConfigurationName)"; }
|
2006-02-25 01:35:35 +03:00
|
|
|
|
2009-10-21 00:38:37 +04:00
|
|
|
/** Return true if the target project file should have the option
|
|
|
|
LinkLibraryDependencies and link to .sln dependencies. */
|
|
|
|
virtual bool NeedLinkLibraryDependencies(cmTarget&) { return false; }
|
|
|
|
|
2013-10-16 23:48:44 +04:00
|
|
|
const char* GetIntelProjectVersion();
|
|
|
|
|
2013-12-04 19:35:04 +04:00
|
|
|
virtual void FindMakeProgram(cmMakefile*);
|
|
|
|
|
2014-08-07 20:58:25 +04:00
|
|
|
/** Is the Microsoft Assembler enabled? */
|
|
|
|
bool IsMasmEnabled() const { return this->MasmEnabled; }
|
|
|
|
|
2014-03-14 18:48:42 +04:00
|
|
|
// Encoding for Visual Studio files
|
|
|
|
virtual std::string Encoding();
|
|
|
|
|
2015-05-17 12:33:04 +03:00
|
|
|
cmIDEFlagTable const* ExtraFlagTable;
|
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
protected:
|
2014-07-22 23:01:05 +04:00
|
|
|
virtual void Generate();
|
2009-09-16 19:44:08 +04:00
|
|
|
virtual const char* GetIDEVersion() { return "7.0"; }
|
|
|
|
|
2013-11-13 23:27:51 +04:00
|
|
|
std::string const& GetDevEnvCommand();
|
|
|
|
virtual std::string FindDevEnvCommand();
|
|
|
|
|
2013-12-20 01:39:19 +04:00
|
|
|
static const char* ExternalProjectType(const char* location);
|
|
|
|
|
2011-10-13 21:51:18 +04:00
|
|
|
virtual void OutputSLNFile(cmLocalGenerator* root,
|
2004-03-10 00:28:44 +03:00
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
|
|
|
virtual void WriteSLNFile(std::ostream& fout, cmLocalGenerator* root,
|
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2011-10-13 21:51:18 +04:00
|
|
|
virtual void WriteProject(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name, const char* path,
|
2013-12-10 18:16:23 +04:00
|
|
|
cmTarget const& t);
|
2011-10-13 21:51:18 +04:00
|
|
|
virtual void WriteProjectDepends(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name, const char* path,
|
2013-12-10 18:16:23 +04:00
|
|
|
cmTarget const&t);
|
2012-10-11 23:57:22 +04:00
|
|
|
virtual void WriteProjectConfigurations(
|
2014-02-08 00:40:05 +04:00
|
|
|
std::ostream& fout, const std::string& name, cmTarget::TargetType type,
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> const& configs,
|
2012-10-11 23:57:22 +04:00
|
|
|
const std::set<std::string>& configsPartOfDefaultBuild,
|
2014-02-25 02:36:27 +04:00
|
|
|
const std::string& platformMapping = "");
|
2012-10-15 00:10:49 +04:00
|
|
|
virtual void WriteSLNGlobalSections(std::ostream& fout,
|
|
|
|
cmLocalGenerator* root);
|
2003-05-09 00:59:27 +04:00
|
|
|
virtual void WriteSLNFooter(std::ostream& fout);
|
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
2013-12-10 18:16:23 +04:00
|
|
|
virtual std::string WriteUtilityDepend(cmTarget const* target);
|
2003-05-09 00:59:27 +04:00
|
|
|
|
2008-01-30 20:04:38 +03:00
|
|
|
virtual void WriteTargetsToSolution(
|
|
|
|
std::ostream& fout,
|
2010-12-20 19:15:55 +03:00
|
|
|
cmLocalGenerator* root,
|
2009-07-10 17:12:39 +04:00
|
|
|
OrderedTargetDependSet const& projectTargets);
|
2008-01-30 20:04:38 +03:00
|
|
|
virtual void WriteTargetDepends(
|
|
|
|
std::ostream& fout,
|
2009-01-22 00:39:43 +03:00
|
|
|
OrderedTargetDependSet const& projectTargets);
|
2008-01-30 20:04:38 +03:00
|
|
|
virtual void WriteTargetConfigurations(
|
|
|
|
std::ostream& fout,
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> const& configs,
|
2009-01-22 00:39:43 +03:00
|
|
|
OrderedTargetDependSet const& projectTargets);
|
2011-10-13 21:51:18 +04:00
|
|
|
|
|
|
|
virtual void WriteExternalProject(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name,
|
2008-01-30 20:04:38 +03:00
|
|
|
const char* path,
|
2012-04-16 18:07:19 +04:00
|
|
|
const char* typeGuid,
|
2014-02-10 09:21:34 +04:00
|
|
|
const std::set<std::string>&
|
2008-02-01 00:38:45 +03:00
|
|
|
dependencies);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2006-10-10 05:48:48 +04:00
|
|
|
std::string ConvertToSolutionPath(const char* path);
|
2006-02-25 01:35:35 +03:00
|
|
|
|
2014-06-12 18:36:10 +04:00
|
|
|
std::set<std::string>
|
2015-05-20 20:55:21 +03:00
|
|
|
IsPartOfDefaultBuild(std::vector<std::string> const& configs,
|
|
|
|
OrderedTargetDependSet const& projectTargets,
|
2014-06-12 18:36:10 +04:00
|
|
|
cmTarget const* target);
|
|
|
|
bool IsDependedOn(OrderedTargetDependSet const& projectTargets,
|
|
|
|
cmTarget const* target);
|
2014-02-10 09:21:34 +04:00
|
|
|
std::map<std::string, std::string> GUIDMap;
|
2006-01-14 02:18:32 +03:00
|
|
|
|
2010-09-03 21:53:22 +04:00
|
|
|
virtual void WriteFolders(std::ostream& fout);
|
|
|
|
virtual void WriteFoldersContent(std::ostream& fout);
|
|
|
|
std::map<std::string,std::set<std::string> > VisualStudioFolders;
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// Set during OutputSLNFile with the name of the current project.
|
|
|
|
// There is one SLN file per project.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string CurrentProject;
|
2014-09-05 22:53:01 +04:00
|
|
|
std::string GeneratorPlatform;
|
2014-09-05 22:02:58 +04:00
|
|
|
std::string DefaultPlatformName;
|
2014-08-07 20:58:25 +04:00
|
|
|
bool MasmEnabled;
|
2013-10-16 23:48:44 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
char* IntelProjectVersion;
|
2013-11-13 23:27:51 +04:00
|
|
|
std::string DevEnvCommand;
|
|
|
|
bool DevEnvCommandInitialized;
|
2013-11-15 19:41:45 +04:00
|
|
|
virtual std::string GetVSMakeProgram() { return this->GetDevEnvCommand(); }
|
2002-09-04 23:23:56 +04:00
|
|
|
};
|
|
|
|
|
2005-12-14 19:00:44 +03:00
|
|
|
#define CMAKE_CHECK_BUILD_SYSTEM_TARGET "ZERO_CHECK"
|
2005-12-13 22:21:28 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
#endif
|