Skip to content

Instantly share code, notes, and snippets.

@amaitland
Last active October 9, 2017 13:00
Show Gist options
  • Save amaitland/94308e90f69725e1a6a218951f73b4ce to your computer and use it in GitHub Desktop.
Save amaitland/94308e90f69725e1a6a218951f73b4ce to your computer and use it in GitHub Desktop.
libvlc
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VlcLib64TargetDir Condition=" '$(VlcLib64TargetDir)' == '' ">libvlc\x64</VlcLib64TargetDir>
</PropertyGroup>
<ItemGroup Condition="(('$(Platform)' == 'x64') OR ('$(Platform)' == 'AnyCPU'))">
<VlcLibs64 Include="$(MSBuildThisFileDirectory)..\build\x64\**" />
<Content Include="@(VlcLibs64)">
<Link>$(VlcLib64TargetDir)\%(RecursiveDir)%(FileName)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>false</Visible>
</Content>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment