mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix SDL2 in lua
This commit is contained in:
parent
2d70c3e292
commit
ebb5953632
4
bam.lua
4
bam.lua
|
@ -148,7 +148,7 @@ server_sql_depends = {}
|
|||
if family == "windows" then
|
||||
if platform == "win32" then
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/freetype/lib32/freetype.dll"))
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/sdl/lib32/SDL.dll"))
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/sdl/lib32/SDL2.dll"))
|
||||
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/curl/windows/lib32/libcurl.dll"))
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/curl/windows/lib32/libeay32.dll"))
|
||||
|
@ -163,7 +163,7 @@ if family == "windows" then
|
|||
table.insert(client_depends, CopyToDirectory(".", "other/opus/windows/lib32/libopusfile-0.dll"))
|
||||
else
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/freetype/lib64/freetype.dll"))
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/sdl/lib64/SDL.dll"))
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/sdl/lib64/SDL2.dll"))
|
||||
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/curl/windows/lib64/libcurl.dll"))
|
||||
table.insert(client_depends, CopyToDirectory(".", "other/curl/windows/lib64/libeay32.dll"))
|
||||
|
|
Loading…
Reference in a new issue