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:
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalVisualStudio10Generator(cmake* cm, const std::string& name,
|
2014-07-18 00:16:10 +04:00
|
|
|
const std::string& platformName);
|
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
|
|
|
|
2014-07-18 00:34:21 +04:00
|
|
|
virtual bool SetSystemName(std::string const& s, cmMakefile* mf);
|
2014-09-05 22:53:01 +04:00
|
|
|
virtual bool SetGeneratorPlatform(std::string const& p, cmMakefile* mf);
|
2014-09-05 21:43:52 +04:00
|
|
|
virtual bool SetGeneratorToolset(std::string const& ts, cmMakefile* mf);
|
2012-12-10 19:52:10 +04:00
|
|
|
|
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>()
|
|
|
|
);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
///! create the correct local generator
|
2015-05-24 12:50:55 +03:00
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator(cmLocalGenerator* parent,
|
|
|
|
cmState::Snapshot snapshot);
|
2009-06-26 00:41:57 +04:00
|
|
|
|
|
|
|
/**
|
2014-10-10 03:22:45 +04:00
|
|
|
* Try to determine system information 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; }
|
|
|
|
|
2014-07-18 19:12:11 +04:00
|
|
|
/** Generating for Nsight Tegra VS plugin? */
|
|
|
|
bool IsNsightTegra() const;
|
2014-09-26 22:57:30 +04:00
|
|
|
std::string GetNsightTegraVersion() const;
|
2014-07-18 19:12:11 +04:00
|
|
|
|
2010-12-01 20:48:32 +03:00
|
|
|
/** The toolset name for the target platform. */
|
2014-06-04 21:09:35 +04:00
|
|
|
const char* GetPlatformToolset() const;
|
2010-12-01 20:48:32 +03:00
|
|
|
|
2014-07-30 22:06:07 +04:00
|
|
|
/** Return the CMAKE_SYSTEM_NAME. */
|
|
|
|
std::string const& GetSystemName() const { return this->SystemName; }
|
|
|
|
|
|
|
|
/** Return the CMAKE_SYSTEM_VERSION. */
|
|
|
|
std::string const& GetSystemVersion() const { return this->SystemVersion; }
|
|
|
|
|
2014-09-15 17:46:43 +04:00
|
|
|
/** Return true if building for WindowsCE */
|
|
|
|
bool TargetsWindowsCE() const
|
|
|
|
{ return this->SystemIsWindowsCE; }
|
|
|
|
|
2014-07-29 19:42:30 +04:00
|
|
|
/** Return true if building for WindowsPhone */
|
|
|
|
bool TargetsWindowsPhone() const
|
|
|
|
{ return this->SystemIsWindowsPhone; }
|
|
|
|
|
|
|
|
/** Return true if building for WindowsStore */
|
|
|
|
bool TargetsWindowsStore() const
|
|
|
|
{ return this->SystemIsWindowsStore; }
|
|
|
|
|
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*);
|
|
|
|
|
2014-07-18 19:12:11 +04:00
|
|
|
static std::string GetInstalledNsightTegraVersion();
|
|
|
|
|
2009-09-16 19:44:08 +04:00
|
|
|
protected:
|
2014-07-22 23:01:05 +04:00
|
|
|
virtual void Generate();
|
2014-07-28 23:37:15 +04:00
|
|
|
virtual bool InitializeSystem(cmMakefile* mf);
|
2014-09-15 17:46:43 +04:00
|
|
|
virtual bool InitializeWindowsCE(cmMakefile* mf);
|
2014-07-29 00:15:43 +04:00
|
|
|
virtual bool InitializeWindowsPhone(cmMakefile* mf);
|
|
|
|
virtual bool InitializeWindowsStore(cmMakefile* mf);
|
2014-11-13 22:47:01 +03:00
|
|
|
|
2014-09-15 17:46:43 +04:00
|
|
|
virtual std::string SelectWindowsCEToolset() const;
|
2014-11-13 22:47:01 +03:00
|
|
|
virtual bool SelectWindowsPhoneToolset(std::string& toolset) const;
|
|
|
|
virtual bool SelectWindowsStoreToolset(std::string& toolset) const;
|
2014-07-22 23:01:05 +04:00
|
|
|
|
2009-09-16 19:44:08 +04:00
|
|
|
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();
|
|
|
|
|
2014-06-04 21:09:35 +04:00
|
|
|
std::string GeneratorToolset;
|
|
|
|
std::string DefaultPlatformToolset;
|
2014-07-28 23:33:40 +04:00
|
|
|
std::string SystemName;
|
|
|
|
std::string SystemVersion;
|
2014-07-18 19:12:11 +04:00
|
|
|
std::string NsightTegraVersion;
|
2014-09-15 17:46:43 +04:00
|
|
|
bool SystemIsWindowsCE;
|
2014-07-29 19:42:30 +04:00
|
|
|
bool SystemIsWindowsPhone;
|
|
|
|
bool SystemIsWindowsStore;
|
2010-12-01 20:48:32 +03:00
|
|
|
bool ExpressEdition;
|
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(); }
|
2015-04-15 16:30:14 +03:00
|
|
|
|
|
|
|
// We do not use the reload macros for VS >= 10.
|
|
|
|
virtual std::string GetUserMacrosDirectory() { return ""; }
|
2009-06-26 00:41:57 +04:00
|
|
|
};
|
|
|
|
#endif
|