chg: New build system that uses the officially distributed binaries, bumped version to 8.0.0, simplified git workflow, removed deprecated OpenGL 1.1 functionality.
This commit is contained in:
parent
ef98ca456a
commit
ccb74af7cd
20 changed files with 296 additions and 357 deletions
10
Raylib-cs/Raylib-cs.targets
Normal file
10
Raylib-cs/Raylib-cs.targets
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'browser-wasm'">
|
||||
<!-- WASM build needs explicit native reference due to semi-static linkage (?) -->
|
||||
<NativeFileReference Include="$(MSBuildThisFileDirectory)..\runtimes\browser-wasm\native\raylib.a"/>
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'browser-wasm'">
|
||||
<EmccFlags>$(EmccFlags) -sUSE_GLFW=3</EmccFlags>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
Loading…
Reference in a new issue