Added Windows 7/8 compatibility section to manifest

http://msdn.microsoft.com/en-us/library/windows/desktop/hh848036.aspx
This commit is contained in:
Birunthan Mohanathas
2012-09-18 22:37:35 +03:00
parent 9cc3e897b9
commit 678ac501ad
5 changed files with 37 additions and 16 deletions

View File

@ -23,12 +23,6 @@
#include "zip.h"
#include "unzip.h"
#if defined _M_IX86
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif
#define MAX_LINE_LENGTH 4096
#define MB_ERROR MB_OK | MB_TOPMOST | MB_ICONERROR

View File

@ -105,6 +105,9 @@
<BuildLog>
<Path>$(IntDir)\$(MSBuildProjectName).log</Path>
</BuildLog>
<Manifest>
<AdditionalManifestFiles>..\Application\Application.manifest</AdditionalManifestFiles>
</Manifest>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<MASM>
@ -140,6 +143,9 @@
<BuildLog>
<Path>$(IntDir)\$(MSBuildProjectName).log</Path>
</BuildLog>
<Manifest>
<AdditionalManifestFiles>..\Application\Application.manifest</AdditionalManifestFiles>
</Manifest>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<MASM>
@ -174,6 +180,9 @@
<Bscmake>
<OutputFile>$(IntDir)SkinInstaller.bsc</OutputFile>
</Bscmake>
<Manifest>
<AdditionalManifestFiles>..\Application\Application.manifest</AdditionalManifestFiles>
</Manifest>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<MASM>
@ -206,6 +215,9 @@
<Bscmake>
<OutputFile>$(IntDir)SkinInstaller.bsc</OutputFile>
</Bscmake>
<Manifest>
<AdditionalManifestFiles>..\Application\Application.manifest</AdditionalManifestFiles>
</Manifest>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\Library\Dialog.cpp" />