diff options
author | 2015-04-04 18:25:04 +1100 | |
---|---|---|
committer | 2015-04-04 18:25:04 +1100 | |
commit | 73f53bb15e363712d097fe59c097de1a1fb9fed0 (patch) | |
tree | 70b159e73ec28ed30fc6635c0df79007318ac031 /scripts/src/osd/modules.lua | |
parent | 3a15dfc2d89ca7d42748ced4582e69e6556c61cd (diff) |
* Take more link dependencies caused by OSD out of genie.lua
* Always dynamically link SDL on Windows
* Fix SDL1 build on Windows
Diffstat (limited to 'scripts/src/osd/modules.lua')
-rw-r--r-- | scripts/src/osd/modules.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/src/osd/modules.lua b/scripts/src/osd/modules.lua index c8e1efee2c9..eac621aaf8b 100644 --- a/scripts/src/osd/modules.lua +++ b/scripts/src/osd/modules.lua @@ -181,6 +181,14 @@ function osdmodulestargetconf() end end + if _OPTIONS["targetos"]=="windows" then + links { + "gdi32", + "dsound", + "dxguid", + } + end + end |