diff options
author | Brad King <brad.king@kitware.com> | 2019-03-14 17:24:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-03-14 17:24:25 (GMT) |
commit | b5b24158ce41ec376e6ba36fa44f7b160c03b4f8 (patch) | |
tree | 7629988c9a45d1a1d0c475148062e0733f2d5d8e | |
parent | bf02d625325535f485512eba307cff54c08bb257 (diff) | |
parent | 5c50eeaffc334891af73f3a72557693c86ee380e (diff) | |
download | CMake-b5b24158ce41ec376e6ba36fa44f7b160c03b4f8.zip CMake-b5b24158ce41ec376e6ba36fa44f7b160c03b4f8.tar.gz CMake-b5b24158ce41ec376e6ba36fa44f7b160c03b4f8.tar.bz2 |
Merge branch 'vs2019-wow64' into release-3.14
Merge-request: !3102
-rw-r--r-- | Source/cmGlobalVisualStudioVersionedGenerator.cxx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Source/cmGlobalVisualStudioVersionedGenerator.cxx b/Source/cmGlobalVisualStudioVersionedGenerator.cxx index 4d74e32..f52abd0 100644 --- a/Source/cmGlobalVisualStudioVersionedGenerator.cxx +++ b/Source/cmGlobalVisualStudioVersionedGenerator.cxx @@ -18,8 +18,15 @@ #elif defined(_M_IA64) # define HOST_PLATFORM_NAME "Itanium" # define HOST_TOOLS_ARCH "" +#elif defined(_WIN64) +# define HOST_PLATFORM_NAME "x64" +# define HOST_TOOLS_ARCH "x64" #else -# include "cmsys/SystemInformation.hxx" +static bool VSIsWow64() +{ + BOOL isWow64 = false; + return IsWow64Process(GetCurrentProcess(), &isWow64) && isWow64; +} #endif static std::string VSHostPlatformName() @@ -27,8 +34,7 @@ static std::string VSHostPlatformName() #ifdef HOST_PLATFORM_NAME return HOST_PLATFORM_NAME; #else - cmsys::SystemInformation info; - if (info.Is64Bits()) { + if (VSIsWow64()) { return "x64"; } else { return "Win32"; @@ -41,8 +47,7 @@ static std::string VSHostArchitecture() #ifdef HOST_TOOLS_ARCH return HOST_TOOLS_ARCH; #else - cmsys::SystemInformation info; - if (info.Is64Bits()) { + if (VSIsWow64()) { return "x64"; } else { return "x86"; |