diff options
author | 2016-08-31 18:41:35 +1000 | |
---|---|---|
committer | 2016-08-31 18:41:35 +1000 | |
commit | 58ad88f3527ac1523c12593ee6f42d869dbcda6a (patch) | |
tree | 9e5ddb502a3f2d1ecf2dcaf5ef3d5f41da087cf6 /docs/release/scripts/src/main.lua | |
parent | b1bef5cbde2d3d633b3b041e77647a4430d3ecc6 (diff) |
0.177 Release fileshbmame177
Diffstat (limited to 'docs/release/scripts/src/main.lua')
-rw-r--r-- | docs/release/scripts/src/main.lua | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/docs/release/scripts/src/main.lua b/docs/release/scripts/src/main.lua index 8fc9965d3c7..c33d1554157 100644 --- a/docs/release/scripts/src/main.lua +++ b/docs/release/scripts/src/main.lua @@ -197,12 +197,20 @@ if (STANDALONE~=true) then "frontend", } end +if (MACHINES["NETLIST"]~=null) then links { "netlist", + } +end + links { "optional", "emu", + } +--if (STANDALONE~=true) then + links { "formats", } +--end if #disasm_files > 0 then links { "dasm", @@ -214,10 +222,13 @@ end "softfloat", ext_lib("jpeg"), "7z", + } +if (STANDALONE~=true) then + links { ext_lib("lua"), "lualibs", } - +end if _OPTIONS["USE_LIBUV"]=="1" then links { ext_lib("uv"), @@ -256,11 +267,11 @@ end ext_includedir("flac"), } - + if (STANDALONE==true) then standalone(); end - + if (STANDALONE~=true) then if _OPTIONS["targetos"]=="macosx" and (not override_resources) then linkoptions { @@ -367,6 +378,6 @@ end debugargs (_OPTIONS["DEBUG_ARGS"]) else debugargs ("-window") - end - + end + end |