diff options
author | Brad King <brad.king@kitware.com> | 2012-08-21 16:06:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-08-21 17:02:39 (GMT) |
commit | 4c9ae472ecb1a2b8e8ce0b115d0f54bf5f875fb1 (patch) | |
tree | aa932a6bdf70d1a60e71895b4f8662f3f7370a88 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | d17c58c8534ba68e527a79f33fad60c502ebdde1 (diff) | |
download | CMake-4c9ae472ecb1a2b8e8ce0b115d0f54bf5f875fb1.zip CMake-4c9ae472ecb1a2b8e8ce0b115d0f54bf5f875fb1.tar.gz CMake-4c9ae472ecb1a2b8e8ce0b115d0f54bf5f875fb1.tar.bz2 |
VS11: Rename 'Immersive' to 'WindowsAppContainer' (#12930)
Since commit 9e01aefd (VS: Add support for WinRT project properties,
2012-02-03) CMake generates for VS 11 projects the 'Immersive' element
for the VS_WINRT_EXTENSIONS target property. That was based on the VS
11 preview version. The final version renamed the element to
'WindowsAppContainer', so generate that instead.
Suggested-by: Eugene Golushkov <eugene_gff@ukr.net>
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 6caaad1..6626e5b 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -413,7 +413,8 @@ void cmVisualStudio10TargetGenerator::WriteProjectConfigurationValues() } if(this->Target->GetPropertyAsBool("VS_WINRT_EXTENSIONS")) { - this->WriteString("<Immersive>true</Immersive>\n", 2); + this->WriteString("<WindowsAppContainer>true" + "</WindowsAppContainer>\n", 2); } this->WriteString("</PropertyGroup>\n", 1); } |