diff options
Diffstat (limited to 'src/miranda32')
-rw-r--r-- | src/miranda32/miranda32.vcxproj | 11 | ||||
-rw-r--r-- | src/miranda32/miranda32.vcxproj.filters | 21 |
2 files changed, 25 insertions, 7 deletions
diff --git a/src/miranda32/miranda32.vcxproj b/src/miranda32/miranda32.vcxproj index de61c97157..123f66ca55 100644 --- a/src/miranda32/miranda32.vcxproj +++ b/src/miranda32/miranda32.vcxproj @@ -35,6 +35,17 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\app.props" />
</ImportGroup>
+ <ItemGroup>
+ <ClCompile Include="src\miranda.cpp" />
+ <ClCompile Include="src\stdafx.cxx">
+ <PrecompiledHeader>Create</PrecompiledHeader>
+ </ClCompile>
+ <ClInclude Include="src\stdafx.h" />
+ </ItemGroup>
+ <ItemGroup>
+ <ResourceCompile Include="res\resource.rc" />
+ <ResourceCompile Include="res\version.rc" />
+ </ItemGroup>
<ItemDefinitionGroup>
<Manifest>
<AdditionalManifestFiles>res/miranda32.exe.manifest</AdditionalManifestFiles>
diff --git a/src/miranda32/miranda32.vcxproj.filters b/src/miranda32/miranda32.vcxproj.filters index 902edc4d65..e01d644041 100644 --- a/src/miranda32/miranda32.vcxproj.filters +++ b/src/miranda32/miranda32.vcxproj.filters @@ -2,17 +2,24 @@ <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(ProjectDir)..\..\build\vc.common\common.filters" />
<ItemGroup>
- <ClInclude Include="src\*.h">
- <Filter>Header Files</Filter>
- </ClInclude>
- <ClCompile Include="src\*.cpp;src\*.cxx">
+ <ClCompile Include="src\miranda.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ <ClCompile Include="src\stdafx.cxx">
<Filter>Source Files</Filter>
</ClCompile>
- <ResourceCompile Include="res\*.rc">
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="src\stdafx.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ </ItemGroup>
+ <ItemGroup>
+ <ResourceCompile Include="res\resource.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
- <None Include="res\*.ico;res\*.bmp;res\*.cur">
+ <ResourceCompile Include="res\version.rc">
<Filter>Resource Files</Filter>
- </None>
+ </ResourceCompile>
</ItemGroup>
</Project>
\ No newline at end of file |