2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2009-06-26 00:41:57 +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.
|
2009-06-26 00:41:57 +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.
|
|
|
|
============================================================================*/
|
2009-06-26 00:41:57 +04:00
|
|
|
#ifndef cmGlobalVisualStudio10Generator_h
|
|
|
|
#define cmGlobalVisualStudio10Generator_h
|
|
|
|
|
|
|
|
#include "cmGlobalVisualStudio8Generator.h"
|
|
|
|
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio10Generator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudio10Generator manages UNIX build process for a tree
|
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
class cmGlobalVisualStudio10Generator :
|
2009-06-26 00:41:57 +04:00
|
|
|
public cmGlobalVisualStudio8Generator
|
|
|
|
{
|
|
|
|
public:
|
2014-02-25 02:36:27 +04:00
|
|
|
cmGlobalVisualStudio10Generator(const std::string& name,
|
|
|
|
const std::string& platformName,
|
|
|
|
const std::string& additionalPlatformDefinition);
|
2012-11-19 22:05:55 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory();
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2014-02-25 02:36:27 +04:00
|
|
|
virtual bool MatchesGeneratorName(const std::string& name) const;
|
2013-10-28 18:08:11 +04:00
|
|
|
|
2012-12-10 19:52:10 +04:00
|
|
|
virtual bool SetGeneratorToolset(std::string const& ts);
|
|
|
|
|
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,
|
2013-11-15 22:33:32 +04:00
|
|
|
bool fast,
|
|
|
|
std::vector<std::string> const& makeOptions = std::vector<std::string>()
|
|
|
|
);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2012-08-17 00:20:34 +04:00
|
|
|
virtual void AddPlatformDefinitions(cmMakefile* mf);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
///! create the correct local generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
2012-04-27 22:13:02 +04:00
|
|
|
virtual void Generate();
|
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
/**
|
|
|
|
* Try to determine system infomation such as shared library
|
2012-08-13 21:42:58 +04:00
|
|
|
* extension, pthreads, byte order etc.
|
2009-06-26 00:41:57 +04:00
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2009-06-26 00:41:57 +04:00
|
|
|
cmMakefile *, bool optional);
|
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
|
|
|
|
2010-12-01 20:48:32 +03:00
|
|
|
/** Is the installed VS an Express edition? */
|
|
|
|
bool IsExpressEdition() const { return this->ExpressEdition; }
|
|
|
|
|
2013-08-05 18:34:10 +04:00
|
|
|
/** Is the Microsoft Assembler enabled? */
|
|
|
|
bool IsMasmEnabled() const { return this->MasmEnabled; }
|
|
|
|
|
2010-12-01 20:48:32 +03:00
|
|
|
/** The toolset name for the target platform. */
|
|
|
|
const char* GetPlatformToolset();
|
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
/**
|
|
|
|
* Where does this version of Visual Studio look for macros for the
|
|
|
|
* current user? Returns the empty string if this version of Visual
|
|
|
|
* Studio does not implement support for VB macros.
|
|
|
|
*/
|
|
|
|
virtual std::string GetUserMacrosDirectory();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* What is the reg key path to "vsmacros" for this version of Visual
|
|
|
|
* Studio?
|
|
|
|
*/
|
|
|
|
virtual std::string GetUserMacrosRegKeyBase();
|
2012-03-09 01:18:55 +04:00
|
|
|
virtual const char* GetCMakeCFGIntDir() const
|
2009-11-18 23:50:29 +03:00
|
|
|
{ return "$(Configuration)";}
|
2011-06-19 20:40:28 +04:00
|
|
|
bool Find64BitTools(cmMakefile* mf);
|
2012-04-18 23:50:49 +04:00
|
|
|
|
|
|
|
/** Generate an <output>.rule file path for a given command output. */
|
|
|
|
virtual std::string GenerateRuleFile(std::string const& output) const;
|
|
|
|
|
2014-03-13 02:50:42 +04:00
|
|
|
void PathTooLong(cmTarget* target, cmSourceFile const* sf,
|
2012-04-27 22:13:02 +04:00
|
|
|
std::string const& sfRel);
|
2013-08-20 22:59:59 +04:00
|
|
|
|
|
|
|
virtual const char* GetToolsVersion() { return "4.0"; }
|
|
|
|
|
2013-12-04 19:35:04 +04:00
|
|
|
virtual void FindMakeProgram(cmMakefile*);
|
|
|
|
|
2009-09-16 19:44:08 +04:00
|
|
|
protected:
|
|
|
|
virtual const char* GetIDEVersion() { return "10.0"; }
|
2010-12-01 20:48:32 +03:00
|
|
|
|
2013-11-13 23:27:51 +04:00
|
|
|
std::string const& GetMSBuildCommand();
|
|
|
|
|
2010-12-01 20:48:32 +03:00
|
|
|
std::string PlatformToolset;
|
|
|
|
bool ExpressEdition;
|
2013-08-05 18:34:10 +04:00
|
|
|
bool MasmEnabled;
|
2012-06-02 21:58:03 +04:00
|
|
|
|
|
|
|
bool UseFolderProperty();
|
|
|
|
|
2012-04-27 22:13:02 +04:00
|
|
|
private:
|
2012-11-19 22:05:55 +04:00
|
|
|
class Factory;
|
2012-04-27 22:13:02 +04:00
|
|
|
struct LongestSourcePath
|
|
|
|
{
|
|
|
|
LongestSourcePath(): Length(0), Target(0), SourceFile(0) {}
|
|
|
|
size_t Length;
|
|
|
|
cmTarget* Target;
|
2014-03-13 02:50:42 +04:00
|
|
|
cmSourceFile const* SourceFile;
|
2012-04-27 22:13:02 +04:00
|
|
|
std::string SourceRel;
|
|
|
|
};
|
|
|
|
LongestSourcePath LongestSource;
|
2013-11-13 23:27:51 +04:00
|
|
|
|
|
|
|
std::string MSBuildCommand;
|
|
|
|
bool MSBuildCommandInitialized;
|
|
|
|
virtual std::string FindMSBuildCommand();
|
|
|
|
virtual std::string FindDevEnvCommand();
|
2013-11-15 19:41:45 +04:00
|
|
|
virtual std::string GetVSMakeProgram() { return this->GetMSBuildCommand(); }
|
2009-06-26 00:41:57 +04:00
|
|
|
};
|
|
|
|
#endif
|