Skip to content

Commit

Permalink
Cleanup natives a bit
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Slusny <[email protected]>
  • Loading branch information
deathbeam committed Oct 31, 2024
1 parent e8b45fe commit dab0a4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Raylib.NET.Native/buildTransitive/Raylib.NET.Native.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<!-- Disable exception handling because of asyncify -->
<WasmEnableExceptionHandling>false</WasmEnableExceptionHandling>
<!-- Set emcc flags for debug and release builds -->
<EmccFlags Condition="$(Configuration) == 'Debug'">-sUSE_GLFW=3 -sASYNCIFY=1 -sASSERTIONS=1 -sVERBOSE=1 -Wbad-function-cast -Wcast-function-type -O2 -g3</EmccFlags>
<EmccFlags Condition="$(Configuration) == 'Release'">-sUSE_GLFW=3 -sASYNCIFY=1 -O3 -g0</EmccFlags>
<EmccFlags>$(EmccFlags) --shell-file $(RaylibStaticPath)minshell.html</EmccFlags>
<EmccFlags Condition="$(Configuration) == 'Debug'">-O2 -g3 -sASSERTIONS=1 -sVERBOSE=1 -Wbad-function-cast -Wcast-function-type</EmccFlags>
<EmccFlags Condition="$(Configuration) == 'Release'">-O3 -g0</EmccFlags>
<EmccFlags>$(EmccFlags) -sUSE_GLFW=3 -sASYNCIFY=1 --shell-file $(RaylibStaticPath)minshell.html</EmccFlags>
</PropertyGroup>
</Project>

0 comments on commit dab0a4d

Please sign in to comment.