diff options
author | 2019-02-18 21:13:44 +1100 | |
---|---|---|
committer | 2019-02-18 21:13:44 +1100 | |
commit | 8ffff5d2d3bcebbdbefec2508ddd2ecd264a399a (patch) | |
tree | 68d8714657d95564298b2e0736ffaea572d65afa /scripts/src/tools.lua | |
parent | 4ada281e4c75650b656ee24738c4f27de5f7b498 (diff) |
(nw) misc stuff:
* Document cross-compilation options
* Use lowercase for some libraries that are lowercase in system32 on Windows anyway
* Make USE_BUNDLED_LIB_SDL2=0 not use the bundled SDL
Diffstat (limited to 'scripts/src/tools.lua')
-rw-r--r-- | scripts/src/tools.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/src/tools.lua b/scripts/src/tools.lua index 157cbde1e7e..25790c257ac 100644 --- a/scripts/src/tools.lua +++ b/scripts/src/tools.lua @@ -819,16 +819,16 @@ if (_OPTIONS["osd"] == "sdl") then configuration { "mingw*"} links { "SDL2", - "Imm32", - "Version", - "Ole32", - "OleAut32", + "imm32", + "version", + "ole32", + "oleaut32", } configuration { "vs*" } links { "SDL2", - "Imm32", - "Version", + "imm32", + "version", } configuration { } else @@ -841,8 +841,8 @@ if (_OPTIONS["osd"] == "sdl") then configuration { "vs*" } links { "SDL2", - "Imm32", - "Version", + "imm32", + "version", } configuration { } else |