summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/extlib.lua
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2017-01-27 23:14:12 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2017-01-27 23:14:12 +1100
commit26cd861a9385b035d3227fd8cd71cdd9aa0b5181 (patch)
tree5c847a0fe396f241e42eedfa93ba23a654e934ad /docs/release/scripts/extlib.lua
parenta69112f29d7f574b50c048d8c0861da7fdff444d (diff)
Added remaining CPS-2 games from mame++.
Diffstat (limited to 'docs/release/scripts/extlib.lua')
-rw-r--r--docs/release/scripts/extlib.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/release/scripts/extlib.lua b/docs/release/scripts/extlib.lua
index a3949e3447b..674f1b1d881 100644
--- a/docs/release/scripts/extlib.lua
+++ b/docs/release/scripts/extlib.lua
@@ -14,6 +14,7 @@ local extlibs = {
portmidi = { "portmidi", "3rdparty/portmidi/pm_common" },
portaudio = { "portaudio", "3rdparty/portaudio/include" },
lua = { "lua", "3rdparty/lua/src" },
+ utf8proc = { "utf8proc", "3rdparty/utf8proc" },
}
-- system lib options
@@ -57,6 +58,11 @@ newoption {
description = "Use system LUA library",
}
+newoption {
+ trigger = "with-system-utf8proc",
+ description = "Use system utf8proc library",
+}
+
-- build helpers
function ext_lib(lib)
local opt = _OPTIONS["with-system-" .. lib]