| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,8 +11,9 @@ | |||
| 11 | 11 | <GenerateManifest Condition="'$(GenerateManifest)' == ''">false</GenerateManifest> | |
| 12 | 12 | <EmbedManifest Condition="'$(EmbedManifest)' == ''">false</EmbedManifest> | |
| 13 | 13 | <!-- For VS2008, we have to embed the manifest to be able to run --> | |
| 14 | - <GenerateManifest Condition="'$(PlatformToolset)' == 'v90'">true</GenerateManifest> | ||
| 15 | - <EmbedManifest Condition="'$(PlatformToolset)' == 'v90'">true</EmbedManifest> | ||
| 14 | + <!-- BasePlatformToolset is for ICC support --> | ||
| 15 | + <GenerateManifest Condition="'$(PlatformToolset)' == 'v90' or '$(BasePlatformToolset)' == 'v90'">true</GenerateManifest> | ||
| 16 | + <EmbedManifest Condition="'$(PlatformToolset)' == 'v90' or '$(BasePlatformToolset)' == 'v90'">true</EmbedManifest> | ||
| 16 | 17 | <SupportPGO Condition="'$(SupportPGO)' == ''">true</SupportPGO> | |
| 17 | 18 | <SupportSigning Condition="'$(SupportSigning)' == ''">true</SupportSigning> | |
| 18 | 19 | <SupportSigning Condition="'$(Configuration)' == 'Debug'">false</SupportSigning> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,7 +7,10 @@ | |||
| 7 | 7 | Use only MSVC 9.0, unless explicitly overridden | |
| 8 | 8 | --> | |
| 9 | 9 | <PlatformToolset Condition="'$(PlatformToolset)' == ''">v90</PlatformToolset> | |
| 10 | - | ||
| 10 | + <!-- | ||
| 11 | + Give a default for BasePlatformToolset as well, it's used by ICC and ignored otherwise | ||
| 12 | + --> | ||
| 13 | + <BasePlatformToolset Condition="'$(BasePlatformToolset)' == '' and '$(PlatformToolset)' != 'v90'">v90</BasePlatformToolset> | ||
| 11 | 14 | <!-- | |
| 12 | 15 | Convincing MSVC/MSBuild to prefer our platform names is too difficult, | |
| 13 | 16 | so we define our own constant ArchName and use wherever we need it. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments