mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Native build improvements (#235)
* Add Raylib-cs.Native to solution * Update build.yml to use local build * Remove experimental android setup
This commit is contained in:
parent
383ec91e95
commit
f7fd66b7eb
200
.github/workflows/build.yml
vendored
200
.github/workflows/build.yml
vendored
@ -18,30 +18,6 @@ jobs:
|
|||||||
- name: checkout repository
|
- name: checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: setup dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install \
|
|
||||||
libasound2-dev \
|
|
||||||
libx11-dev \
|
|
||||||
libxrandr-dev \
|
|
||||||
libxi-dev \
|
|
||||||
libgl1-mesa-dev \
|
|
||||||
libglu1-mesa-dev \
|
|
||||||
libxcursor-dev \
|
|
||||||
libxinerama-dev
|
|
||||||
|
|
||||||
- name: setup dotnet
|
|
||||||
uses: actions/setup-dotnet@v3
|
|
||||||
with:
|
|
||||||
dotnet-version: 6.0.x
|
|
||||||
|
|
||||||
- name: build and run tests
|
|
||||||
run: dotnet test Raylib-cs.Tests -c Release
|
|
||||||
|
|
||||||
- name: build examples desktop
|
|
||||||
run: dotnet build Examples -c Release
|
|
||||||
|
|
||||||
- name: check raylib version
|
- name: check raylib version
|
||||||
id: version
|
id: version
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -49,57 +25,18 @@ jobs:
|
|||||||
echo "version=$(sed -n 's/.*<TargetRaylibTag>\(.*\)<\/TargetRaylibTag>.*/\1/p' Raylib-cs/Build.props)">> ${GITHUB_OUTPUT}
|
echo "version=$(sed -n 's/.*<TargetRaylibTag>\(.*\)<\/TargetRaylibTag>.*/\1/p' Raylib-cs/Build.props)">> ${GITHUB_OUTPUT}
|
||||||
echo "pkgversion=$(sed -n 's/.*<PackageVersion>\(.*\)<\/PackageVersion>.*/\1/p' Raylib-cs/Build.props)">> ${GITHUB_OUTPUT}
|
echo "pkgversion=$(sed -n 's/.*<PackageVersion>\(.*\)<\/PackageVersion>.*/\1/p' Raylib-cs/Build.props)">> ${GITHUB_OUTPUT}
|
||||||
|
|
||||||
build-android:
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
needs: build
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
name: [arm, arm64, x86, x64]
|
|
||||||
include:
|
|
||||||
- name: arm
|
|
||||||
arch: armeabi-v7a
|
|
||||||
cflags: "-mfloat-abi=softfp -mfpu=vfpv3-d16"
|
|
||||||
- name: arm64
|
|
||||||
arch: arm64-v8a
|
|
||||||
cflags: "-mfix-cortex-a53-835769"
|
|
||||||
- name: x86
|
|
||||||
arch: x86
|
|
||||||
- name: x64
|
|
||||||
arch: x86_64
|
|
||||||
steps:
|
|
||||||
- name: checkout repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: build raylib
|
|
||||||
env:
|
|
||||||
version: ${{ needs.build.outputs.version }}
|
|
||||||
run: |
|
|
||||||
curl -Lso raylib.zip https://github.com/raysan5/raylib/archive/refs/tags/${version}.zip
|
|
||||||
unzip -qq raylib.zip
|
|
||||||
pushd raylib-${version}; patch -p1 < ../Examples.Android/android.patch; popd
|
|
||||||
cmake -S raylib-${version} \
|
|
||||||
-B build \
|
|
||||||
-D CMAKE_BUILD_TYPE=Release \
|
|
||||||
-D BUILD_SHARED_LIBS=ON \
|
|
||||||
-D BUILD_EXAMPLES=OFF \
|
|
||||||
-D CMAKE_TOOLCHAIN_FILE=${ANDROID_NDK}/build/cmake/android.toolchain.cmake \
|
|
||||||
-D PLATFORM=Android \
|
|
||||||
-D ANDROID_ABI=${{ matrix.arch }} \
|
|
||||||
-D ANDROID_PLATFORM=21 \
|
|
||||||
-D CMAKE_C_FLAGS="${{ matrix.cflags }}"
|
|
||||||
cmake --build build --config Release
|
|
||||||
|
|
||||||
- name: upload build
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: android-${{ matrix.name }}
|
|
||||||
path: build/raylib/libraylib.so
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
needs: build
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
|
- name: checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: setup dotnet
|
||||||
|
uses: actions/setup-dotnet@v3
|
||||||
|
with:
|
||||||
|
dotnet-version: 6.0.x
|
||||||
|
|
||||||
- name: setup dependencies
|
- name: setup dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
@ -113,25 +50,17 @@ jobs:
|
|||||||
libxcursor-dev \
|
libxcursor-dev \
|
||||||
libxinerama-dev
|
libxinerama-dev
|
||||||
|
|
||||||
- name: build raylib
|
- name: build projects
|
||||||
env:
|
run: dotnet build -c Release
|
||||||
version: ${{ needs.build.outputs.version }}
|
|
||||||
run: |
|
- name: run tests
|
||||||
curl -Lso raylib.zip https://github.com/raysan5/raylib/archive/refs/tags/${version}.zip
|
run: dotnet test Raylib-cs.Tests -c Release
|
||||||
unzip -qq raylib.zip
|
|
||||||
cmake -S raylib-${version} \
|
|
||||||
-B build \
|
|
||||||
-D CMAKE_BUILD_TYPE=Release \
|
|
||||||
-D BUILD_SHARED_LIBS=ON \
|
|
||||||
-D BUILD_EXAMPLES=OFF \
|
|
||||||
-D CMAKE_C_FLAGS="${{ matrix.cflags }}"
|
|
||||||
cmake --build build --config Release
|
|
||||||
|
|
||||||
- name: upload build
|
- name: upload build
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: linux-x64
|
name: linux-x64
|
||||||
path: build/raylib/libraylib.so
|
path: Raylib-cs.Native/bin/Release/native/raylib/libraylib.so
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
build-osx:
|
build-osx:
|
||||||
@ -146,25 +75,25 @@ jobs:
|
|||||||
- name: x64
|
- name: x64
|
||||||
arch: x86_64
|
arch: x86_64
|
||||||
steps:
|
steps:
|
||||||
- name: build raylib
|
- name: checkout repository
|
||||||
env:
|
uses: actions/checkout@v3
|
||||||
version: ${{ needs.build.outputs.version }}
|
|
||||||
run: |
|
- name: setup dotnet
|
||||||
curl -Lso raylib.zip https://github.com/raysan5/raylib/archive/refs/tags/${version}.zip
|
uses: actions/setup-dotnet@v3
|
||||||
unzip -qq raylib.zip
|
with:
|
||||||
cmake -S raylib-${version} \
|
dotnet-version: 6.0.x
|
||||||
-B build \
|
|
||||||
-D CMAKE_BUILD_TYPE=Release \
|
- name: build projects
|
||||||
-D CMAKE_OSX_ARCHITECTURES=${{ matrix.arch }} \
|
run: dotnet build -c Release
|
||||||
-D BUILD_SHARED_LIBS=ON \
|
|
||||||
-D BUILD_EXAMPLES=OFF
|
- name: run tests
|
||||||
cmake --build build --config Release
|
run: dotnet test Raylib-cs.Tests -c Release
|
||||||
|
|
||||||
- name: upload build
|
- name: upload build
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: osx-${{ matrix.name }}
|
name: osx-${{ matrix.name }}
|
||||||
path: build/raylib/libraylib.dylib
|
path: Raylib-cs.Native/bin/Release/native/raylib/libraylib.dylib
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
build-windows:
|
build-windows:
|
||||||
@ -179,34 +108,30 @@ jobs:
|
|||||||
- name: x64
|
- name: x64
|
||||||
arch: x64
|
arch: x64
|
||||||
steps:
|
steps:
|
||||||
- name: build ${{ matrix.arch }}
|
- name: checkout repository
|
||||||
shell: bash
|
uses: actions/checkout@v3
|
||||||
env:
|
|
||||||
version: ${{ needs.build.outputs.version }}
|
- name: setup dotnet
|
||||||
run: |
|
uses: actions/setup-dotnet@v3
|
||||||
curl -Lso raylib.zip https://github.com/raysan5/raylib/archive/refs/tags/${version}.zip
|
with:
|
||||||
unzip -qq raylib.zip
|
dotnet-version: 6.0.x
|
||||||
cmake -S raylib-${version} \
|
|
||||||
-A ${{ matrix.arch }} \
|
- name: build projects
|
||||||
-B build \
|
run: dotnet build -c Release
|
||||||
-D CMAKE_BUILD_TYPE=Release \
|
|
||||||
-D BUILD_SHARED_LIBS=ON \
|
- name: run tests
|
||||||
-D BUILD_EXAMPLES=OFF \
|
run: dotnet test Raylib-cs.Tests -c Release
|
||||||
-D CMAKE_C_FLAGS="${{ matrix.cflags }}"
|
|
||||||
cmake --build build --config Release
|
|
||||||
|
|
||||||
- name: upload build
|
- name: upload build
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: win-${{ matrix.name }}
|
name: win-${{ matrix.name }}
|
||||||
path: build/raylib/Release/raylib.dll
|
path: Raylib-cs.Native/bin/Release/native/raylib/Release/raylib.dll
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
publish:
|
build-publish:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
needs:
|
needs:
|
||||||
- build
|
|
||||||
- build-android
|
|
||||||
- build-linux
|
- build-linux
|
||||||
- build-osx
|
- build-osx
|
||||||
- build-windows
|
- build-windows
|
||||||
@ -214,39 +139,6 @@ jobs:
|
|||||||
- name: checkout repository
|
- name: checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: setup dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install \
|
|
||||||
libasound2-dev \
|
|
||||||
libx11-dev \
|
|
||||||
libxrandr-dev \
|
|
||||||
libxi-dev \
|
|
||||||
libgl1-mesa-dev \
|
|
||||||
libglu1-mesa-dev \
|
|
||||||
libxcursor-dev \
|
|
||||||
libxinerama-dev
|
|
||||||
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: android-arm
|
|
||||||
path: Examples.Android/runtimes/android-arm/native
|
|
||||||
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: android-arm64
|
|
||||||
path: Examples.Android/runtimes/android-arm64/native
|
|
||||||
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: android-x86
|
|
||||||
path: Examples.Android/runtimes/android-x86/native
|
|
||||||
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: android-x64
|
|
||||||
path: Examples.Android/runtimes/android-x64/native
|
|
||||||
|
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: linux-x64
|
name: linux-x64
|
||||||
@ -277,12 +169,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
dotnet-version: 6.0.x
|
dotnet-version: 6.0.x
|
||||||
|
|
||||||
#- name: restore workload
|
|
||||||
# run: dotnet workload restore
|
|
||||||
|
|
||||||
#- name: build examples android
|
|
||||||
# run: dotnet build Examples.Android -c Release
|
|
||||||
|
|
||||||
- name: create NuGet Package
|
- name: create NuGet Package
|
||||||
run: dotnet pack Raylib-cs -c Release --output nuget
|
run: dotnet pack Raylib-cs -c Release --output nuget
|
||||||
|
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<application android:allowBackup="true" android:icon="@mipmap/appicon"
|
|
||||||
android:label="@string/app_name" android:roundIcon="@mipmap/appicon_round"
|
|
||||||
android:supportsRtl="true">
|
|
||||||
</application>
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
|
||||||
</manifest>
|
|
@ -1,29 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<TargetFrameworks>net6.0-android;net7.0-android</TargetFrameworks>
|
|
||||||
<RootNamespace>Examples.Android</RootNamespace>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
|
|
||||||
<ApplicationId>com.raylibcs.android</ApplicationId>
|
|
||||||
<ApplicationVersion>1</ApplicationVersion>
|
|
||||||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Using Include="Raylib_cs" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
|
|
||||||
<ProjectReference Include="../Examples/Examples.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<Import Project="../Raylib-cs/Build.props" />
|
|
||||||
|
|
||||||
</Project>
|
|
@ -1,17 +0,0 @@
|
|||||||
using System.Runtime.InteropServices;
|
|
||||||
|
|
||||||
namespace Examples.Android;
|
|
||||||
|
|
||||||
public abstract class RaylibActivity : NativeActivity
|
|
||||||
{
|
|
||||||
protected override void OnCreate(Bundle? savedInstanceState)
|
|
||||||
{
|
|
||||||
RaylibSetAndroidCallback(OnReady);
|
|
||||||
base.OnCreate(savedInstanceState);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected abstract void OnReady();
|
|
||||||
|
|
||||||
[DllImport(Raylib.NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
|
||||||
private static extern void RaylibSetAndroidCallback(Action callback);
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
diff --git a/src/rcore.c b/src/rcore.c
|
|
||||||
index eae4951..4400b22 100644
|
|
||||||
--- a/src/rcore.c
|
|
||||||
+++ b/src/rcore.c
|
|
||||||
@@ -1,3 +1,22 @@
|
|
||||||
+#if defined (PLATFORM_ANDROID)
|
|
||||||
+#include <stdlib.h>
|
|
||||||
+
|
|
||||||
+typedef void (*RaylibAndroidCallback)();
|
|
||||||
+static RaylibAndroidCallback _androidCallback = NULL;
|
|
||||||
+
|
|
||||||
+void RaylibSetAndroidCallback(RaylibAndroidCallback callback) {
|
|
||||||
+ _androidCallback = callback;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+int main(int argc, char *argv[]) {
|
|
||||||
+ (void)argc;
|
|
||||||
+ (void)argv;
|
|
||||||
+ while (_androidCallback == NULL) {
|
|
||||||
+ }
|
|
||||||
+ _androidCallback();
|
|
||||||
+}
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
/**********************************************************************************************
|
|
||||||
*
|
|
||||||
* rcore - Basic functions to manage windows, OpenGL context and input on multiple platforms
|
|
@ -1,8 +1,8 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk" InitialTargets="ConfigureNative">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<AssemblyName>Raylib-cs.Native</AssemblyName>
|
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Import Project="../Raylib-cs/Build.props" />
|
<Import Project="../Raylib-cs/Build.props" />
|
||||||
@ -24,34 +24,35 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content
|
<Content
|
||||||
Include="$(IntermediateOutputPath)native/raylib/$(NativePre)raylib.$(NativeExt)"
|
Include="$(OutputPath)native/raylib/$(NativePre)raylib.$(NativeExt)"
|
||||||
Link="%(Filename)%(Extension)"
|
Link="%(Filename)%(Extension)"
|
||||||
CopyToOutputDirectory="PreserveNewest"
|
CopyToOutputDirectory="PreserveNewest"
|
||||||
Condition="Exists('$(IntermediateOutputPath)native/raylib/$(NativePre)raylib.$(NativeExt)')" />
|
Condition="Exists('$(OutputPath)native/raylib/$(NativePre)raylib.$(NativeExt)')" />
|
||||||
<CMakeArgs Include="-B $(IntermediateOutputPath)native" />
|
|
||||||
<CMakeArgs Include="-S $(IntermediateOutputPath)raylib-$(TargetRaylibTag)" />
|
<CMakeArgs Include="-B $(OutputPath)native" />
|
||||||
|
<CMakeArgs Include="-S $(BaseIntermediateOutputPath)raylib-$(TargetRaylibTag)" />
|
||||||
<CMakeArgs Include="-D CMAKE_BUILD_TYPE=$(Configuration)" />
|
<CMakeArgs Include="-D CMAKE_BUILD_TYPE=$(Configuration)" />
|
||||||
<CMakeArgs Include="-D BUILD_SHARED_LIBS=ON" />
|
<CMakeArgs Include="-D BUILD_SHARED_LIBS=ON" />
|
||||||
<CMakeArgs Include="-D BUILD_EXAMPLES=OFF" />
|
<CMakeArgs Include="-D BUILD_EXAMPLES=OFF" />
|
||||||
<!-- <CMakeArgs Include="-D GRAPHICS=GRAPHICS_API_OPENGL_43" /> -->
|
<!-- <CMakeArgs Include="-D GRAPHICS=GRAPHICS_API_OPENGL_43" /> -->
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="ConfigureNative" BeforeTargets="BuildNative" Condition="$(SkipLocalBuild) != true">
|
<Target Name="ConfigureNative" Condition="$(SkipLocalBuild) != true">
|
||||||
<DownloadFile
|
<DownloadFile
|
||||||
SourceUrl="https://github.com/raysan5/raylib/archive/refs/tags/$(TargetRaylibTag).zip"
|
SourceUrl="https://github.com/raysan5/raylib/archive/refs/tags/$(TargetRaylibTag).zip"
|
||||||
DestinationFolder="$(IntermediateOutputPath)"
|
DestinationFolder="$(BaseIntermediateOutputPath)"
|
||||||
DestinationFileName="raylib.zip"
|
DestinationFileName="raylib.zip"
|
||||||
Condition="!Exists('$(IntermediateOutputPath)raylib.zip')" />
|
Condition="!Exists('$(BaseIntermediateOutputPath)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">
|
<Unzip
|
||||||
<Exec Command="cmake --build $(IntermediateOutputPath)native --config $(Configuration)" />
|
SourceFiles="$(BaseIntermediateOutputPath)raylib.zip"
|
||||||
|
DestinationFolder="$(BaseIntermediateOutputPath)"
|
||||||
|
OverwriteReadOnlyFiles="true"
|
||||||
|
Condition="!Exists('$(BaseIntermediateOutputPath)raylib-$(TargetRaylibTag)')" />
|
||||||
|
|
||||||
|
<Exec Command="cmake @(CMakeArgs, ' ') $(CMakeExtraArgs)"
|
||||||
|
Condition="!Exists('$(BaseIntermediateOutputPath)native/CMakeCache.txt')" />
|
||||||
|
|
||||||
|
<Exec Command="cmake --build $(OutputPath)native --config $(Configuration)" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Raylib-cs.Tests", "Raylib-c
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Examples", "Examples\Examples.csproj", "{1E2A5986-3F11-457F-AF97-D0C08D0060BA}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Examples", "Examples\Examples.csproj", "{1E2A5986-3F11-457F-AF97-D0C08D0060BA}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Raylib-cs.Native", "Raylib-cs.Native\Raylib-cs.Native.csproj", "{B89AA313-3675-42A3-80BC-6156913E3A27}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@ -30,5 +32,9 @@ Global
|
|||||||
{1E2A5986-3F11-457F-AF97-D0C08D0060BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{1E2A5986-3F11-457F-AF97-D0C08D0060BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{1E2A5986-3F11-457F-AF97-D0C08D0060BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{1E2A5986-3F11-457F-AF97-D0C08D0060BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{1E2A5986-3F11-457F-AF97-D0C08D0060BA}.Release|Any CPU.Build.0 = Release|Any CPU
|
{1E2A5986-3F11-457F-AF97-D0C08D0060BA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B89AA313-3675-42A3-80BC-6156913E3A27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B89AA313-3675-42A3-80BC-6156913E3A27}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B89AA313-3675-42A3-80BC-6156913E3A27}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B89AA313-3675-42A3-80BC-6156913E3A27}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
Loading…
x
Reference in New Issue
Block a user