-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGlslang.NET.csproj
116 lines (95 loc) · 5.08 KB
/
Glslang.NET.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Glslang.NET</PackageId>
<Version>1.2.0</Version>
<Authors>Kai Angulo</Authors>
<Owners>Kai Angulo</Owners>
<Copyright>Copyright (c) Kai Angulo 2024.</Copyright>
<Description>A cross-platform managed wrapper for the Khronos Group's GLSL reference compiler</Description>
<RepositoryUrl>https://github.com/sinnwrig/Glslang.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>shader compiler glslang glsl hlsl khronos shader-programs spirv spir-v Vulkan OpenGL</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup>
<WindowsX64LibPath>..\Native\lib\windows-x64\bin\*.dll</WindowsX64LibPath>
<WindowsArm64LibPath>..\Native\lib\windows-arm64\bin\*.dll</WindowsArm64LibPath>
<LinuxX64LibPath>..\Native\lib\linux-x64\lib\*.so</LinuxX64LibPath>
<LinuxArm64LibPath>..\Native\lib\linux-arm64\lib\*.so</LinuxArm64LibPath>
<MacosX64LibPath>..\Native\lib\macos-x64\lib\*.dylib</MacosX64LibPath>
<MacosArm64LibPath>..\Native\lib\macos-arm64\lib\*.dylib</MacosArm64LibPath>
<WindowsX64RuntimePath>runtimes\win-x64\native</WindowsX64RuntimePath>
<WindowsArm64RuntimePath>runtimes\win-arm64\native</WindowsArm64RuntimePath>
<LinuxX64RuntimePath>runtimes\linux-x64\native</LinuxX64RuntimePath>
<LinuxArm64RuntimePath>runtimes\linux-arm64\native</LinuxArm64RuntimePath>
<MacosX64RuntimePath>runtimes\osx-x64\native</MacosX64RuntimePath>
<MacosArm64RuntimePath>runtimes\osx-arm64\native</MacosArm64RuntimePath>
</PropertyGroup>
<ItemGroup>
<None Include="../LICENSE" Pack="true" PackagePath="\"/>
<None Include="../README.md" Pack="true" PackagePath="\"/>
<Content Include="$(WindowsX64BinPath)">
<Pack>true</Pack>
<PackagePath>$(WindowsX64RuntimePath)</PackagePath>
</Content>
<Content Include="$(WindowsArm64BinPath)">
<Pack>true</Pack>
<PackagePath>$(WindowsArm64RuntimePath)</PackagePath>
</Content>
<Content Include="$(LinuxX64LibPath)">
<Pack>true</Pack>
<PackagePath>$(LinuxX64RuntimePath)</PackagePath>
</Content>
<Content Include="$(LinuxArm64LibPath)">
<Pack>true</Pack>
<PackagePath>$(LinuxArm64RuntimePath)</PackagePath>
</Content>
<Content Include="$(MacosX64LibPath)">
<Pack>true</Pack>
<PackagePath>$(MacosX64RuntimePath)</PackagePath>
</Content>
<Content Include="$(MacosArm64LibPath)">
<Pack>true</Pack>
<PackagePath>$(MacosArm64RuntimePath)</PackagePath>
</Content>
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsOsPlatform('Windows')) AND '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'X64' ">
<Content Include="$(WindowsX64LibPath)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsOsPlatform('Windows')) AND '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'Arm64' ">
<Content Include="$(WindowsArm64LibPath)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsOsPlatform('Linux')) AND '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'X64' ">
<Content Include="$(LinuxX64LibPath)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsOsPlatform('Linux')) AND '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'Arm64' ">
<Content Include="$(LinuxArm64LibPath)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsOsPlatform('OSX')) AND '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'X64' ">
<Content Include="$(MacosX64LibPath)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="$([MSBuild]::IsOsPlatform('OSX')) AND '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'Arm64' ">
<Content Include="$(MacosArm64LibPath)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>