diff options
author | comicfans <comicfans44@gmail.com> | 2017-09-10 09:39:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-09-18 15:53:22 (GMT) |
commit | 3232f84c19b86184cb7c2db137b97ccb9aec20cc (patch) | |
tree | e501ab9d8d15456e731bc323c118c2d3b4285eff /Source/cmVisualStudioGeneratorOptions.h | |
parent | e18ab9c4b2fc3b11a1e246b1418d25382a853bfb (diff) | |
download | CMake-3232f84c19b86184cb7c2db137b97ccb9aec20cc.zip CMake-3232f84c19b86184cb7c2db137b97ccb9aec20cc.tar.gz CMake-3232f84c19b86184cb7c2db137b97ccb9aec20cc.tar.bz2 |
VS: Fix MANIFESTUAC link flag map to .vcxproj elements
Add special parsing of the flags given in `/MANIFESTUAC:"..."` in order
to map them correctly to `.vcxproj` elements.
Keep the old incorrect flag table entries for `uiAccess` and `level`
flags for compatibility even though they do not really exist.
Fixes: #16563
Diffstat (limited to 'Source/cmVisualStudioGeneratorOptions.h')
-rw-r--r-- | Source/cmVisualStudioGeneratorOptions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmVisualStudioGeneratorOptions.h b/Source/cmVisualStudioGeneratorOptions.h index 8d7942b..7c08a2c 100644 --- a/Source/cmVisualStudioGeneratorOptions.h +++ b/Source/cmVisualStudioGeneratorOptions.h @@ -77,6 +77,8 @@ public: void FixCudaCodeGeneration(); + void FixManifestUACFlags(); + bool IsDebug() const; bool IsWinRt() const; bool IsManaged() const; |