Added copy libs targets
Added native libs for linux
This commit is contained in:
parent
5d2c350bb8
commit
1c64d6fe54
27
Nerfed.Runtime/CopyLibs.targets
Normal file
27
Nerfed.Runtime/CopyLibs.targets
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<Target Name="Runtime ID" AfterTargets="Build">
|
||||
<Message Text="Runtime ID: $(RuntimeIdentifier)" Importance="high"/>
|
||||
</Target>
|
||||
|
||||
<ItemGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))">
|
||||
<Content Include="..\libs\x64\**\*.*" >
|
||||
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))">
|
||||
<Content Include="..\libs\lib64\**\*.*" >
|
||||
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))">
|
||||
<Content Include="..\libs\osx\**\*.*" >
|
||||
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@ -22,4 +22,5 @@
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project=".\CopyLibs.targets" />
|
||||
</Project>
|
BIN
libs/lib64/FAudio.so
Executable file
BIN
libs/lib64/FAudio.so
Executable file
Binary file not shown.
BIN
libs/lib64/Refresh.so
Executable file
BIN
libs/lib64/Refresh.so
Executable file
Binary file not shown.
BIN
libs/lib64/SDL2.so
Executable file
BIN
libs/lib64/SDL2.so
Executable file
Binary file not shown.
BIN
libs/lib64/Wellspring.so
Executable file
BIN
libs/lib64/Wellspring.so
Executable file
Binary file not shown.
BIN
libs/lib64/cimgui.so
Normal file
BIN
libs/lib64/cimgui.so
Normal file
Binary file not shown.
BIN
libs/lib64/dav1dfile.so
Normal file
BIN
libs/lib64/dav1dfile.so
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user