copy libs as content to VST built dir

This commit is contained in:
Birch-san 2018-06-14 19:18:43 +01:00
parent d07ceced22
commit 0d115f2646
No known key found for this signature in database
GPG Key ID: 726D53FF6A26AB9D
6 changed files with 264 additions and 87 deletions

View File

@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Project DefaultTargets="Build"
ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
@ -19,8 +16,7 @@
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"
Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<WholeProgramOptimization>false</WholeProgramOptimization>
@ -28,8 +24,7 @@
<PlatformToolset>v141</PlatformToolset>
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"
Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<WholeProgramOptimization>true</WholeProgramOptimization>
@ -40,9 +35,7 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label="LocalAppDataPlatform"/>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros">
<PlatformToolset>v141</PlatformToolset>
@ -162,7 +155,53 @@
<ItemGroup>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_Standalone.cpp" />
</ItemGroup>
<ItemGroup/>
<ItemGroup>
<None Include="lib\libFLAC-8.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libfluidsynth-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libglib-2.0-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libiconv-2.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libintl-8.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libogg-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libpcre-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libportaudio-2.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libreadline7.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libsndfile-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libspeex-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libtermcap-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libvorbis-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libvorbisenc-2.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libwinpthread-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include=".\resources.rc" />
</ItemGroup>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="JUCE Library Code">
@ -11,7 +10,23 @@
<Filter>JUCE Library Code</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup/>
<ItemGroup>
<None Include="lib\libFLAC-8.dll" />
<None Include="lib\libfluidsynth-1.dll" />
<None Include="lib\libglib-2.0-0.dll" />
<None Include="lib\libiconv-2.dll" />
<None Include="lib\libintl-8.dll" />
<None Include="lib\libogg-0.dll" />
<None Include="lib\libpcre-1.dll" />
<None Include="lib\libportaudio-2.dll" />
<None Include="lib\libreadline7.dll" />
<None Include="lib\libsndfile-1.dll" />
<None Include="lib\libspeex-1.dll" />
<None Include="lib\libtermcap-0.dll" />
<None Include="lib\libvorbis-0.dll" />
<None Include="lib\libvorbisenc-2.dll" />
<None Include="lib\libwinpthread-1.dll" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include=".\resources.rc">
<Filter>JUCE Library Code</Filter>

View File

@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Project DefaultTargets="Build"
ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
@ -19,8 +16,7 @@
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"
Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<WholeProgramOptimization>false</WholeProgramOptimization>
@ -28,8 +24,7 @@
<PlatformToolset>v141</PlatformToolset>
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"
Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<WholeProgramOptimization>true</WholeProgramOptimization>
@ -40,9 +35,7 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label="LocalAppDataPlatform"/>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros">
<PlatformToolset>v141</PlatformToolset>
@ -162,7 +155,68 @@
<ItemGroup>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_VST2.cpp" />
</ItemGroup>
<ItemGroup/>
<ItemGroup>
<Content Include="lib\libFLAC-8.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libfluidsynth-1.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libglib-2.0-0.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libiconv-2.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libintl-8.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libogg-0.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libpcre-1.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libportaudio-2.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libreadline7.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libsndfile-1.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libspeex-1.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libtermcap-0.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libvorbis-0.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libvorbisenc-2.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="lib\libwinpthread-1.dll">
<Link>%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include=".\resources.rc" />
</ItemGroup>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="JUCE Library Code">
@ -11,7 +10,23 @@
<Filter>JUCE Library Code</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup/>
<ItemGroup>
<None Include="lib\libFLAC-8.dll" />
<None Include="lib\libfluidsynth-1.dll" />
<None Include="lib\libglib-2.0-0.dll" />
<None Include="lib\libiconv-2.dll" />
<None Include="lib\libintl-8.dll" />
<None Include="lib\libogg-0.dll" />
<None Include="lib\libpcre-1.dll" />
<None Include="lib\libportaudio-2.dll" />
<None Include="lib\libreadline7.dll" />
<None Include="lib\libsndfile-1.dll" />
<None Include="lib\libspeex-1.dll" />
<None Include="lib\libtermcap-0.dll" />
<None Include="lib\libvorbis-0.dll" />
<None Include="lib\libvorbisenc-2.dll" />
<None Include="lib\libwinpthread-1.dll" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include=".\resources.rc">
<Filter>JUCE Library Code</Filter>

View File

@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<Project DefaultTargets="Build"
ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
@ -19,8 +16,7 @@
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"
Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<WholeProgramOptimization>false</WholeProgramOptimization>
@ -28,8 +24,7 @@
<PlatformToolset>v141</PlatformToolset>
<WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"
Label="Configuration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<WholeProgramOptimization>true</WholeProgramOptimization>
@ -40,9 +35,7 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label="LocalAppDataPlatform"/>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros">
<PlatformToolset>v141</PlatformToolset>
@ -162,7 +155,53 @@
<ItemGroup>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_VST3.cpp" />
</ItemGroup>
<ItemGroup/>
<ItemGroup>
<None Include="lib\libFLAC-8.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libfluidsynth-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libglib-2.0-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libiconv-2.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libintl-8.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libogg-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libpcre-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libportaudio-2.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libreadline7.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libsndfile-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libspeex-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libtermcap-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libvorbis-0.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libvorbisenc-2.dll">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="lib\libwinpthread-1.dll">
<DeploymentContent>true</DeploymentContent>
</None>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include=".\resources.rc" />
</ItemGroup>

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="JUCE Library Code">
@ -11,7 +10,23 @@
<Filter>JUCE Library Code</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup/>
<ItemGroup>
<None Include="lib\libFLAC-8.dll" />
<None Include="lib\libfluidsynth-1.dll" />
<None Include="lib\libglib-2.0-0.dll" />
<None Include="lib\libiconv-2.dll" />
<None Include="lib\libintl-8.dll" />
<None Include="lib\libogg-0.dll" />
<None Include="lib\libpcre-1.dll" />
<None Include="lib\libportaudio-2.dll" />
<None Include="lib\libreadline7.dll" />
<None Include="lib\libsndfile-1.dll" />
<None Include="lib\libspeex-1.dll" />
<None Include="lib\libtermcap-0.dll" />
<None Include="lib\libvorbis-0.dll" />
<None Include="lib\libvorbisenc-2.dll" />
<None Include="lib\libwinpthread-1.dll" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include=".\resources.rc">
<Filter>JUCE Library Code</Filter>