1
0
Fork 0

bam: adding unix support.

This commit is contained in:
Henrik Hautakoski 2019-12-24 21:07:21 +01:00
parent 6464838159
commit 1cfd4adca4
4 changed files with 55 additions and 23 deletions

View file

@ -16,6 +16,10 @@ if TARGET_OS == "Win32" then
-- Windows needs to link against these.
example_settings.link.libs:Add("opengl32", "gdi32", "user32")
elseif TARGET_OS == "Unix" then
-- Unix nees dl and X11 libs.
example_settings.link.libs:Add("dl", 'X11', 'freetype')
end
-- For now, to get examples working