diff options
author | 2015-04-10 12:37:34 +0200 | |
---|---|---|
committer | 2015-04-10 12:37:34 +0200 | |
commit | 32dc24420c93ab49fc29974888f215c1300f83fd (patch) | |
tree | c7c959f734592ffe764bc68bafc83716ac2cfd88 /scripts/src/main.lua | |
parent | a43d6473decb379b5b6f28ab36e71e4a61192385 (diff) |
Some changes for FreeBSD and Solaris, will be sent upstream as well (nw)
Diffstat (limited to 'scripts/src/main.lua')
-rw-r--r-- | scripts/src/main.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/src/main.lua b/scripts/src/main.lua index 42bfe245537..8604987ffda 100644 --- a/scripts/src/main.lua +++ b/scripts/src/main.lua @@ -59,8 +59,12 @@ function mainProject(_target, _subtarget) "zlib", "jsoncpp", "mongoose", - "portmidi", } + if _OPTIONS["NO_USE_MIDI"]=="0" then + links { + "portmidi", + } + end if (USE_BGFX == 1) then links { "bgfx" |