mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
c5da2877cc
* 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
14 lines
453 B
XML
14 lines
453 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<AdditionalIncludeDirectories>$(ExternalsDir)ed25519;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
</ClCompile>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(ExternalsDir)ed25519\ed25519.vcxproj">
|
|
<Project>{5bdf4b91-1491-4fb0-bc27-78e9a8e97dc3}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
</Project>
|