mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-25 01:28:50 -05:00
cmGlobalVisualStudio10Generator: Move variable initialization to header
This commit is contained in:
@@ -138,9 +138,6 @@ cmGlobalVisualStudio10Generator::cmGlobalVisualStudio10Generator(
|
|||||||
"ProductDir",
|
"ProductDir",
|
||||||
vc10Express, cmSystemTools::KeyWOW64_32);
|
vc10Express, cmSystemTools::KeyWOW64_32);
|
||||||
this->CudaEnabled = false;
|
this->CudaEnabled = false;
|
||||||
this->SystemIsWindowsCE = false;
|
|
||||||
this->SystemIsWindowsPhone = false;
|
|
||||||
this->SystemIsWindowsStore = false;
|
|
||||||
this->MSBuildCommandInitialized = false;
|
this->MSBuildCommandInitialized = false;
|
||||||
{
|
{
|
||||||
std::string envPlatformToolset;
|
std::string envPlatformToolset;
|
||||||
|
|||||||
@@ -185,9 +185,9 @@ protected:
|
|||||||
std::string DefaultNasmFlagTableName;
|
std::string DefaultNasmFlagTableName;
|
||||||
std::string DefaultRCFlagTableName;
|
std::string DefaultRCFlagTableName;
|
||||||
bool SupportsUnityBuilds = false;
|
bool SupportsUnityBuilds = false;
|
||||||
bool SystemIsWindowsCE;
|
bool SystemIsWindowsCE = false;
|
||||||
bool SystemIsWindowsPhone;
|
bool SystemIsWindowsPhone = false;
|
||||||
bool SystemIsWindowsStore;
|
bool SystemIsWindowsStore = false;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class Factory;
|
class Factory;
|
||||||
|
|||||||
Reference in New Issue
Block a user