mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 08:19:59 +00:00
msbuild: refactor to reduce rebuild events
* moves dolphin-specific settings out of Base.props * creates exports.props for externals, allowing to easily import individual Externals * corrects some cruft that accumulated and probably contributed to msbuild overbuilding
This commit is contained in:
parent
7d2d5d914b
commit
c5da2877cc
54 changed files with 596 additions and 256 deletions
14
Externals/libspng/exports.props
vendored
Normal file
14
Externals/libspng/exports.props
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<AdditionalIncludeDirectories>$(ExternalsDir)libspng\libspng\spng;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>SPNG_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="$(ExternalsDir)libspng\spng.vcxproj">
|
||||
<Project>{447B7B1E-1D74-4AEF-B2B9-6EB41C5D5313}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
</Project>
|
1
Externals/libspng/spng.vcxproj
vendored
1
Externals/libspng/spng.vcxproj
vendored
|
@ -29,6 +29,7 @@
|
|||
<ItemGroup>
|
||||
<ClInclude Include="libspng\spng\spng.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(ExternalsDir)zlib-ng\exports.props" />
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue