diff options
author | Wil Stark <wil_stark@keysight.com> | 2019-02-01 18:15:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-02-01 18:59:09 (GMT) |
commit | f5d72be57a00f18ed2b18fc2eb6ccedee3544542 (patch) | |
tree | 96f72815b75781296cd92315c4c79b7e516f4ca2 /Source | |
parent | 0c61b8699cb2b1c75e033c6a7d27f0b93c0dc7bc (diff) | |
download | CMake-f5d72be57a00f18ed2b18fc2eb6ccedee3544542.zip CMake-f5d72be57a00f18ed2b18fc2eb6ccedee3544542.tar.gz CMake-f5d72be57a00f18ed2b18fc2eb6ccedee3544542.tar.bz2 |
VS: Fix deployment for WinCE projects
Fixes: #18868
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 9d7dd07..0ebfe3b 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -376,7 +376,13 @@ void cmVisualStudio10TargetGenerator::Generate() { Elem e0(BuildFileStream, "Project"); e0.Attribute("DefaultTargets", "Build"); - e0.Attribute("ToolsVersion", this->GlobalGenerator->GetToolsVersion()); + const char* toolsVersion = this->GlobalGenerator->GetToolsVersion(); + if (this->GlobalGenerator->GetVersion() == + cmGlobalVisualStudioGenerator::VS12 && + this->GlobalGenerator->TargetsWindowsCE()) { + toolsVersion = "4.0"; + } + e0.Attribute("ToolsVersion", toolsVersion); e0.Attribute("xmlns", "http://schemas.microsoft.com/developer/msbuild/2003"); |