2024-03-28 06:33:55 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- Dependency linking and DLL copying -->
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
<Link>
|
2024-04-06 07:24:05 +00:00
|
|
|
<AdditionalLibraryDirectories>$(DepsLibDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
2024-05-21 02:42:45 +00:00
|
|
|
<AdditionalDependencies>%(AdditionalDependencies);freetype.lib;libjpeg.lib;libpng16.lib;libwebp.lib;lz4.lib;SDL2.lib;zlib.lib;zstd.lib</AdditionalDependencies>
|
2024-04-06 08:18:22 +00:00
|
|
|
</Link>
|
2024-03-28 06:33:55 +00:00
|
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)freetype.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)harfbuzz.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)libjpeg.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)libpng16.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)libsharpyuv.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)libwebp.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)lz4.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)SDL2.dll" />
|
2024-04-06 07:06:10 +00:00
|
|
|
<DepsDLLs Include="$(DepsBinDir)shaderc_shared.dll" />
|
2024-03-28 06:33:55 +00:00
|
|
|
<DepsDLLs Include="$(DepsBinDir)zlib1.dll" />
|
|
|
|
<DepsDLLs Include="$(DepsBinDir)zstd.dll" />
|
|
|
|
</ItemGroup>
|
|
|
|
<Target Name="DepsCopyDLLs"
|
|
|
|
AfterTargets="Build"
|
|
|
|
Inputs="@(DepsDLLs)"
|
|
|
|
Outputs="@(DepsDLLs -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')">
|
|
|
|
<Message Text="Copying Dependency DLLs" Importance="High" />
|
|
|
|
<Copy
|
|
|
|
SourceFiles="@(DepsDLLs)"
|
|
|
|
DestinationFolder="$(OutDir)"
|
|
|
|
SkipUnchangedFiles="true"
|
|
|
|
/>
|
|
|
|
</Target>
|
|
|
|
</Project>
|