Skip to content

Commit

Permalink
Add SDL3 to dllmap
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Sep 26, 2024
1 parent 362f8eb commit 373b340
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions app.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<dllmap dll="SDL2" os="windows" target="SDL2.dll"/>
<dllmap dll="SDL2" os="osx" target="libSDL2-2.0.0.dylib"/>
<dllmap dll="SDL2" os="linux,freebsd,netbsd" target="libSDL2-2.0.so.0"/>
<dllmap dll="SDL3" os="windows" target="SDL3.dll"/>
<dllmap dll="SDL3" os="osx" target="libSDL3.0.dylib"/>
<dllmap dll="SDL3" os="linux,freebsd,netbsd" target="libSDL3.so.0"/>

<dllmap dll="FNA3D" os="windows" target="FNA3D.dll"/>
<dllmap dll="FNA3D" os="osx" target="libFNA3D.0.dylib"/>
Expand All @@ -11,4 +11,9 @@
<dllmap dll="FAudio" os="windows" target="FAudio.dll"/>
<dllmap dll="FAudio" os="osx" target="libFAudio.0.dylib"/>
<dllmap dll="FAudio" os="linux,freebsd,netbsd" target="libFAudio.so.0"/>

<!-- Deprecated! -->
<dllmap dll="SDL2" os="windows" target="SDL2.dll"/>
<dllmap dll="SDL2" os="osx" target="libSDL2-2.0.0.dylib"/>
<dllmap dll="SDL2" os="linux,freebsd,netbsd" target="libSDL2-2.0.so.0"/>
</configuration>

0 comments on commit 373b340

Please sign in to comment.