Skip to content

Commit 55a90ff

Browse files
committed
Add SDL3_shadercross-CS project
1 parent a548bbb commit 55a90ff

File tree

10 files changed

+194
-19
lines changed

10 files changed

+194
-19
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
dotnet pack SDL3_image-CS/SDL3_image-CS.csproj -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
3535
dotnet pack SDL3_ttf-CS/SDL3_ttf-CS.csproj -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
3636
dotnet pack SDL3_mixer-CS/SDL3_mixer-CS.csproj -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
37+
dotnet pack SDL3_shadercross-CS/SDL3_shadercross-CS.csproj -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
3738
3839
- name: Upload artifact
3940
uses: actions/upload-artifact@v4

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
C# bindings for the [SDL3](https://github.com/libsdl-org/SDL) family of libraries.
44

5-
| Product | Usage | Package |
6-
|------------------------------------------------------------------|----------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
7-
| [`SDL`](https://github.com/libsdl-org/SDL/tree/main) | `dotnet add package ppy.SDL3-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3-CS) |
8-
| [`SDL_image`](https://github.com/libsdl-org/SDL_image/tree/main) | `dotnet add package ppy.SDL3_image-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_image-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_image-CS) |
9-
| [`SDL_ttf`](https://github.com/libsdl-org/SDL_ttf/tree/main) | `dotnet add package ppy.SDL3_ttf-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_ttf-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_ttf-CS) |
10-
| [`SDL_mixer`](https://github.com/libsdl-org/SDL_mixer/tree/main) | `dotnet add package ppy.SDL3_mixer-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_mixer-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_mixer-CS) |
5+
| Product | Usage | Package |
6+
|------------------------------------------------------------------------------|----------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------|
7+
| [`SDL`](https://github.com/libsdl-org/SDL/tree/main) | `dotnet add package ppy.SDL3-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3-CS) |
8+
| [`SDL_image`](https://github.com/libsdl-org/SDL_image/tree/main) | `dotnet add package ppy.SDL3_image-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_image-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_image-CS) |
9+
| [`SDL_ttf`](https://github.com/libsdl-org/SDL_ttf/tree/main) | `dotnet add package ppy.SDL3_ttf-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_ttf-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_ttf-CS) |
10+
| [`SDL_mixer`](https://github.com/libsdl-org/SDL_mixer/tree/main) | `dotnet add package ppy.SDL3_mixer-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_mixer-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_mixer-CS) |
11+
| [`SDL_shadercross`](https://github.com/libsdl-org/SDL_shadercross/tree/main) | `dotnet add package ppy.SDL3_shadercross-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_shadercross-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_shadercross-CS) |
1112

1213
Contributions to keep the bindings up-to-date with upstream changes are welcome. If you have improvements or updates, feel free to submit a pull request.
1314

@@ -19,6 +20,7 @@ Contributions to keep the bindings up-to-date with upstream changes are welcome.
1920
| `SDL3_image-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
2021
| `SDL3_ttf-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
2122
| `SDL3_mixer-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
23+
| `SDL3_shadercross-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
2224

2325
## Generating bindings
2426

README_nuget.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
C# bindings for the [SDL3](https://github.com/libsdl-org/SDL) family of libraries.
22

3-
| Product | Usage | Package |
4-
|------------------------------------------------------------------|----------------------------------------|----------------------------------------------------------------------------------------------------------------------------|
5-
| [`SDL`](https://github.com/libsdl-org/SDL/tree/main) | `dotnet add package ppy.SDL3-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3-CS) |
6-
| [`SDL_image`](https://github.com/libsdl-org/SDL_image/tree/main) | `dotnet add package ppy.SDL3_image-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_image-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_image-CS) |
7-
| [`SDL_ttf`](https://github.com/libsdl-org/SDL_ttf/tree/main) | `dotnet add package ppy.SDL3_ttf-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_ttf-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_ttf-CS) |
8-
| [`SDL_mixer`](https://github.com/libsdl-org/SDL_mixer/tree/main) | `dotnet add package ppy.SDL3_mixer-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_mixer-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_mixer-CS) |
3+
| Product | Usage | Package |
4+
|------------------------------------------------------------------------------|----------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------|
5+
| [`SDL`](https://github.com/libsdl-org/SDL/tree/main) | `dotnet add package ppy.SDL3-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3-CS) |
6+
| [`SDL_image`](https://github.com/libsdl-org/SDL_image/tree/main) | `dotnet add package ppy.SDL3_image-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_image-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_image-CS) |
7+
| [`SDL_ttf`](https://github.com/libsdl-org/SDL_ttf/tree/main) | `dotnet add package ppy.SDL3_ttf-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_ttf-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_ttf-CS) |
8+
| [`SDL_mixer`](https://github.com/libsdl-org/SDL_mixer/tree/main) | `dotnet add package ppy.SDL3_mixer-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_mixer-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_mixer-CS) |
9+
| [`SDL_shadercross`](https://github.com/libsdl-org/SDL_shadercross/tree/main) | `dotnet add package ppy.SDL3_shadercross-CS` | [![NuGet](https://img.shields.io/nuget/v/ppy.SDL3_shadercross-CS?label=nuget)](https://www.nuget.org/packages/ppy.SDL3_shadercross-CS) |
910

1011
Contributions to keep the bindings up-to-date with upstream changes are welcome. If you have improvements or updates, feel free to submit a pull request.
1112

@@ -16,4 +17,5 @@ Contributions to keep the bindings up-to-date with upstream changes are welcome.
1617
| `SDL3-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
1718
| `SDL3_image-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
1819
| `SDL3_ttf-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
19-
| `SDL3_mixer-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
20+
| `SDL3_mixer-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
21+
| `SDL3_shadercross-CS` | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |

SDL3-CS.Android.slnf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"SDL3-CS\\SDL3-CS.csproj",
99
"SDL3_image-CS\\SDL3_image-CS.csproj",
1010
"SDL3_mixer-CS\\SDL3_mixer-CS.csproj",
11-
"SDL3_ttf-CS\\SDL3_ttf-CS.csproj"
11+
"SDL3_ttf-CS\\SDL3_ttf-CS.csproj",
12+
"SDL3_shadercross-CS\\SDL3_shadercross-CS.csproj"
1213
]
1314
}
14-
}
15+
}

SDL3-CS.Desktop.slnf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"SDL3-CS\\SDL3-CS.csproj",
99
"SDL3_image-CS\\SDL3_image-CS.csproj",
1010
"SDL3_mixer-CS\\SDL3_mixer-CS.csproj",
11-
"SDL3_ttf-CS\\SDL3_ttf-CS.csproj"
11+
"SDL3_ttf-CS\\SDL3_ttf-CS.csproj",
12+
"SDL3_shadercross-CS\\SDL3_shadercross-CS.csproj"
1213
]
1314
}
14-
}
15+
}

SDL3-CS.Tests/SDL3-CS.Tests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<ProjectReference Include="..\SDL3_image-CS\SDL3_image-CS.csproj"/>
2626
<ProjectReference Include="..\SDL3_ttf-CS\SDL3_ttf-CS.csproj"/>
2727
<ProjectReference Include="..\SDL3_mixer-CS\SDL3_mixer-CS.csproj"/>
28+
<ProjectReference Include="..\SDL3_shadercross-CS\SDL3_shadercross-CS.csproj"/>
2829
</ItemGroup>
2930

3031
<ItemGroup>

SDL3-CS.iOS.slnf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"SDL3-CS\\SDL3-CS.csproj",
99
"SDL3_image-CS\\SDL3_image-CS.csproj",
1010
"SDL3_mixer-CS\\SDL3_mixer-CS.csproj",
11-
"SDL3_ttf-CS\\SDL3_ttf-CS.csproj"
11+
"SDL3_ttf-CS\\SDL3_ttf-CS.csproj",
12+
"SDL3_shadercross-CS\\SDL3_shadercross-CS.csproj"
1213
]
1314
}
14-
}
15+
}

SDL3-CS.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SDL3_image-CS", "SDL3_image
3131
EndProject
3232
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDL3_mixer-CS", "SDL3_mixer-CS\SDL3_mixer-CS.csproj", "{421748C4-B51F-4B00-9637-566DBFD96E02}"
3333
EndProject
34+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDL3_shadercross-CS", "SDL3_shadercross-CS\SDL3_shadercross-CS.csproj", "{E98595B3-A9FA-4217-9F22-1023A7C55C2B}"
35+
EndProject
3436
Global
3537
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3638
Debug|Any CPU = Debug|Any CPU
@@ -73,6 +75,10 @@ Global
7375
{421748C4-B51F-4B00-9637-566DBFD96E02}.Debug|Any CPU.Build.0 = Debug|Any CPU
7476
{421748C4-B51F-4B00-9637-566DBFD96E02}.Release|Any CPU.ActiveCfg = Release|Any CPU
7577
{421748C4-B51F-4B00-9637-566DBFD96E02}.Release|Any CPU.Build.0 = Release|Any CPU
78+
{E98595B3-A9FA-4217-9F22-1023A7C55C2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79+
{E98595B3-A9FA-4217-9F22-1023A7C55C2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
80+
{E98595B3-A9FA-4217-9F22-1023A7C55C2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
81+
{E98595B3-A9FA-4217-9F22-1023A7C55C2B}.Release|Any CPU.Build.0 = Release|Any CPU
7682
EndGlobalSection
7783
GlobalSection(SolutionProperties) = preSolution
7884
HideSolutionNode = FALSE

SDL3-CS/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
[assembly: InternalsVisibleTo("SDL3_ttf-CS")]
1010
[assembly: InternalsVisibleTo("SDL3_image-CS")]
1111
[assembly: InternalsVisibleTo("SDL3_mixer-CS")]
12+
[assembly: InternalsVisibleTo("SDL3_shadercross-CS")]
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks Condition=" '$(CI_DONT_TARGET_ANDROID)' != '1' ">net8.0;net8.0-android</TargetFrameworks>
5+
<TargetFramework Condition=" '$(CI_DONT_TARGET_ANDROID)' == '1' ">net8.0</TargetFramework>
6+
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
7+
<RootNamespace>SDL</RootNamespace>
8+
<Nullable>enable</Nullable>
9+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
10+
<NoWarn>$(NoWarn);SYSLIB1054;CA1401</NoWarn>
11+
</PropertyGroup>
12+
13+
<PropertyGroup Label="NuGet">
14+
<Authors>ppy Pty Ltd</Authors>
15+
<Company>ppy Pty Ltd</Company>
16+
<Copyright>Copyright (c) 2024 ppy Pty Ltd</Copyright>
17+
<Product>ppy.SDL3_shadercross-CS</Product>
18+
<PackageId>ppy.SDL3_shadercross-CS</PackageId>
19+
<PackageReleaseNotes>Automated release.</PackageReleaseNotes>
20+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
21+
<PackageProjectUrl>https://github.com/ppy/SDL3-CS</PackageProjectUrl>
22+
<PackageReadmeFile>README_nuget.md</PackageReadmeFile>
23+
<RepositoryUrl>https://github.com/ppy/SDL3-CS</RepositoryUrl>
24+
</PropertyGroup>
25+
26+
<ItemGroup>
27+
<None Include="$(MSBuildThisFileDirectory)..\README_nuget.md" Pack="true" PackagePath="\"/>
28+
</ItemGroup>
29+
30+
<ItemGroup>
31+
<ProjectReference Include="..\SDL3-CS.SourceGeneration\SDL3-CS.SourceGeneration.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
32+
<ProjectReference Include="..\SDL3-CS\SDL3-CS.csproj"/>
33+
</ItemGroup>
34+
35+
<ItemGroup>
36+
<None Include="$(MSBuildThisFileDirectory)..\native\win-x64\SDL3_shadercross.dll">
37+
<PackagePath>runtimes/win-x64/native</PackagePath>
38+
<Pack>true</Pack>
39+
</None>
40+
<None Include="$(MSBuildThisFileDirectory)..\native\win-x64\spirv-cross-c-shared.dll">
41+
<PackagePath>runtimes/win-x64/native</PackagePath>
42+
<Pack>true</Pack>
43+
</None>
44+
45+
<None Include="$(MSBuildThisFileDirectory)..\native\win-arm64\SDL3_shadercross.dll">
46+
<PackagePath>runtimes/win-arm64/native</PackagePath>
47+
<Pack>true</Pack>
48+
</None>
49+
<None Include="$(MSBuildThisFileDirectory)..\native\win-arm64\spirv-cross-c-shared.dll">
50+
<PackagePath>runtimes/win-x64/native</PackagePath>
51+
<Pack>true</Pack>
52+
</None>
53+
54+
<None Include="$(MSBuildThisFileDirectory)..\native\win-x86\SDL3_shadercross.dll">
55+
<PackagePath>runtimes/win-x86/native</PackagePath>
56+
<Pack>true</Pack>
57+
</None>
58+
<None Include="$(MSBuildThisFileDirectory)..\native\win-x86\spirv-cross-c-shared.dll">
59+
<PackagePath>runtimes/win-x64/native</PackagePath>
60+
<Pack>true</Pack>
61+
</None>
62+
63+
<None Include="$(MSBuildThisFileDirectory)..\native\osx-x64\libSDL3_shadercross.dylib">
64+
<PackagePath>runtimes/osx-x64/native</PackagePath>
65+
<Pack>true</Pack>
66+
</None>
67+
<None Include="$(MSBuildThisFileDirectory)..\native\osx-x64\libspirv-cross-c-shared.dylib">
68+
<PackagePath>runtimes/osx-arm64/native</PackagePath>
69+
<Pack>true</Pack>
70+
</None>
71+
72+
<None Include="$(MSBuildThisFileDirectory)..\native\osx-arm64\libSDL3_shadercross.dylib">
73+
<PackagePath>runtimes/osx-arm64/native</PackagePath>
74+
<Pack>true</Pack>
75+
</None>
76+
<None Include="$(MSBuildThisFileDirectory)..\native\osx-arm64\libspirv-cross-c-shared.dylib">
77+
<PackagePath>runtimes/osx-arm64/native</PackagePath>
78+
<Pack>true</Pack>
79+
</None>
80+
81+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-x64\libSDL3_shadercross.so">
82+
<PackagePath>runtimes/linux-x64/native</PackagePath>
83+
<Pack>true</Pack>
84+
</None>
85+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-x64\libspirv-cross-c-shared.so">
86+
<PackagePath>runtimes/linux-x64/native</PackagePath>
87+
<Pack>true</Pack>
88+
</None>
89+
90+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-x86\libSDL3_shadercross.so">
91+
<PackagePath>runtimes/linux-x86/native</PackagePath>
92+
<Pack>true</Pack>
93+
</None>
94+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-x86\libspirv-cross-c-shared.so">
95+
<PackagePath>runtimes/linux-x64/native</PackagePath>
96+
<Pack>true</Pack>
97+
</None>
98+
99+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-arm64\libSDL3_shadercross.so">
100+
<PackagePath>runtimes/linux-arm64/native</PackagePath>
101+
<Pack>true</Pack>
102+
</None>
103+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-arm64\libspirv-cross-c-shared.so">
104+
<PackagePath>runtimes/linux-x64/native</PackagePath>
105+
<Pack>true</Pack>
106+
</None>
107+
108+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-arm\libSDL3_shadercross.so">
109+
<PackagePath>runtimes/linux-arm/native</PackagePath>
110+
<Pack>true</Pack>
111+
</None>
112+
<None Include="$(MSBuildThisFileDirectory)..\native\linux-arm\libspirv-cross-c-shared.so">
113+
<PackagePath>runtimes/linux-x64/native</PackagePath>
114+
<Pack>true</Pack>
115+
</None>
116+
117+
<None Include="$(MSBuildThisFileDirectory)..\native\ios\SDL3_shadercross.xcframework\**\*">
118+
<PackagePath>runtimes/ios/native/SDL3_shadercross.xcframework</PackagePath>
119+
<Pack>true</Pack>
120+
</None>
121+
122+
<None Include="$(MSBuildThisFileDirectory)..\native\android\armeabi-v7a\libSDL3_shadercross.so">
123+
<PackagePath>runtimes/android-arm/native</PackagePath>
124+
<Pack>true</Pack>
125+
</None>
126+
<None Include="$(MSBuildThisFileDirectory)..\native\android\armeabi-v7a\libspirv-cross-c-shared.so">
127+
<PackagePath>runtimes/android-arm/native</PackagePath>
128+
<Pack>true</Pack>
129+
</None>
130+
131+
<None Include="$(MSBuildThisFileDirectory)..\native\android\arm64-v8a\libSDL3_shadercross.so">
132+
<PackagePath>runtimes/android-arm64/native</PackagePath>
133+
<Pack>true</Pack>
134+
</None>
135+
<None Include="$(MSBuildThisFileDirectory)..\native\android\arm64-v8a\libspirv-cross-c-shared.so">
136+
<PackagePath>runtimes/android-arm/native</PackagePath>
137+
<Pack>true</Pack>
138+
</None>
139+
140+
<None Include="$(MSBuildThisFileDirectory)..\native\android\x86_64\libSDL3_shadercross.so">
141+
<PackagePath>runtimes/android-x64/native</PackagePath>
142+
<Pack>true</Pack>
143+
</None>
144+
<None Include="$(MSBuildThisFileDirectory)..\native\android\x86_64\libspirv-cross-c-shared.so">
145+
<PackagePath>runtimes/android-arm/native</PackagePath>
146+
<Pack>true</Pack>
147+
</None>
148+
149+
<None Include="$(MSBuildThisFileDirectory)..\native\android\x86\libSDL3_shadercross.so">
150+
<PackagePath>runtimes/android-x86/native</PackagePath>
151+
<Pack>true</Pack>
152+
</None>
153+
<None Include="$(MSBuildThisFileDirectory)..\native\android\x86\libspirv-cross-c-shared.so">
154+
<PackagePath>runtimes/android-arm/native</PackagePath>
155+
<Pack>true</Pack>
156+
</None>
157+
</ItemGroup>
158+
159+
</Project>

0 commit comments

Comments
 (0)