Move reusable parts of .vcxproj to .props

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2020-01-09 13:10:31 +01:00
parent f05d3f8243
commit 6f4df3dfab
5 changed files with 76 additions and 84 deletions

View File

@@ -10,5 +10,16 @@
<ModuleDefinitionFile>EAPMethod.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemGroup />
<ItemGroup>
<ClInclude Include="..\src\StdAfx.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\src\Main.cpp" />
<ClCompile Include="..\src\StdAfx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="EAPMethod.def" />
</ItemGroup>
</Project>