copy libraries as content to target folder
This commit is contained in:
parent
0870195e7e
commit
2f29023495
|
@ -283,6 +283,19 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_Standalone.cpp"/>
|
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_Standalone.cpp"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<!-- Note: glob Content Include is not good for incremental build. It saves some typing though. -->
|
||||||
|
<ItemGroup Condition="'$(Platform)'=='x64'">
|
||||||
|
<Content Include="lib_x64\*.dll">
|
||||||
|
<Link>%(Filename)%(Extension)</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup Condition="'$(Platform)'=='Win32'">
|
||||||
|
<Content Include="lib_x86\*.dll">
|
||||||
|
<Link>%(Filename)%(Extension)</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup/>
|
<ItemGroup/>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include=".\resources.rc"/>
|
<ResourceCompile Include=".\resources.rc"/>
|
||||||
|
|
|
@ -283,6 +283,19 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_VST2.cpp"/>
|
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_VST2.cpp"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<!-- Note: glob Content Include is not good for incremental build. It saves some typing though. -->
|
||||||
|
<ItemGroup Condition="'$(Platform)'=='x64'">
|
||||||
|
<Content Include="lib_x64\*.dll">
|
||||||
|
<Link>%(Filename)%(Extension)</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup Condition="'$(Platform)'=='Win32'">
|
||||||
|
<Content Include="lib_x86\*.dll">
|
||||||
|
<Link>%(Filename)%(Extension)</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup/>
|
<ItemGroup/>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include=".\resources.rc"/>
|
<ResourceCompile Include=".\resources.rc"/>
|
||||||
|
|
|
@ -283,6 +283,19 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_VST3.cpp"/>
|
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_VST3.cpp"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<!-- Note: glob Content Include is not good for incremental build. It saves some typing though. -->
|
||||||
|
<ItemGroup Condition="'$(Platform)'=='x64'">
|
||||||
|
<Content Include="lib_x64\*.dll">
|
||||||
|
<Link>%(Filename)%(Extension)</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup Condition="'$(Platform)'=='Win32'">
|
||||||
|
<Content Include="lib_x86\*.dll">
|
||||||
|
<Link>%(Filename)%(Extension)</Link>
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup/>
|
<ItemGroup/>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include=".\resources.rc"/>
|
<ResourceCompile Include=".\resources.rc"/>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user