mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Add Raylib-cs.Native project
This commit is contained in:
parent
5ae2104c9a
commit
ffe4b0f5b8
54
Raylib-cs.Native/Raylib-cs.Native.csproj
Normal file
54
Raylib-cs.Native/Raylib-cs.Native.csproj
Normal file
@ -0,0 +1,54 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
|
||||
<AssemblyName>Raylib-cs.Native</AssemblyName>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
|
||||
<NativeExt>so</NativeExt>
|
||||
<NativePre>lib</NativePre>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
|
||||
<NativeExt>dylib</NativeExt>
|
||||
<NativePre>lib</NativePre>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows'))">
|
||||
<NativeExt>dll</NativeExt>
|
||||
<NativePre>$(Configuration)/</NativePre>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content
|
||||
Include="$(IntermediateOutputPath)native/raylib/$(NativePre)raylib.$(NativeExt)"
|
||||
Link="%(Filename)%(Extension)"
|
||||
CopyToOutputDirectory="PreserveNewest"
|
||||
Condition="Exists('$(IntermediateOutputPath)native/raylib/$(NativePre)raylib.$(NativeExt)')" />
|
||||
<CMakeArgs Include="-B $(IntermediateOutputPath)native" />
|
||||
<CMakeArgs Include="-S $(IntermediateOutputPath)raylib-$(TargetRaylibTag)" />
|
||||
<CMakeArgs Include="-D CMAKE_BUILD_TYPE=$(Configuration)" />
|
||||
<CMakeArgs Include="-D BUILD_SHARED_LIBS=ON" />
|
||||
<CMakeArgs Include="-D BUILD_EXAMPLES=OFF" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="ConfigureNative" BeforeTargets="BuildNative" Condition="$(SkipLocalBuild) != true">
|
||||
<DownloadFile
|
||||
SourceUrl="https://github.com/raysan5/raylib/archive/refs/tags/$(TargetRaylibTag).zip"
|
||||
DestinationFolder="$(IntermediateOutputPath)"
|
||||
DestinationFileName="raylib.zip"
|
||||
Condition="!Exists('$(IntermediateOutputPath)raylib.zip')" />
|
||||
<Unzip
|
||||
SourceFiles="$(IntermediateOutputPath)raylib.zip"
|
||||
DestinationFolder="$(IntermediateOutputPath)"
|
||||
OverwriteReadOnlyFiles="true"
|
||||
Condition="!Exists('$(IntermediateOutputPath)raylib-$(TargetRaylibTag)')" />
|
||||
<Exec Command="cmake @(CMakeArgs, ' ') $(CMakeExtraArgs)"
|
||||
Condition="!Exists('$(IntermediateOutputPath)native/CMakeCache.txt')" />
|
||||
</Target>
|
||||
|
||||
<Target Name="BuildNative" BeforeTargets="BeforeBuild" Condition="$(SkipLocalBuild) != true">
|
||||
<Exec Command="cmake --build $(IntermediateOutputPath)native --config $(Configuration)" />
|
||||
</Target>
|
||||
</Project>
|
@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Raylib-cs.Tests", "Raylib-c
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Raylib-cs.Android", "Raylib-cs.Android\Raylib-cs.Android.csproj", "{8C2B9C24-3926-4B3A-902C-6429CF4864AA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Raylib-cs.Native", "Raylib-cs.Native\Raylib-cs.Native.csproj", "{6D69AB61-7A41-4B95-99CE-82C6809469B6}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@ -39,6 +41,18 @@ Global
|
||||
{8C2B9C24-3926-4B3A-902C-6429CF4864AA}.Release|x64.Build.0 = Release|Any CPU
|
||||
{8C2B9C24-3926-4B3A-902C-6429CF4864AA}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{8C2B9C24-3926-4B3A-902C-6429CF4864AA}.Release|x86.Build.0 = Release|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Release|x64.Build.0 = Release|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{6D69AB61-7A41-4B95-99CE-82C6809469B6}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
Loading…
x
Reference in New Issue
Block a user