diff options
author | 2016-08-30 14:57:38 +1000 | |
---|---|---|
committer | 2016-08-30 14:57:38 +1000 | |
commit | 234e91f9fbdd5add24c551048df017573116fb0a (patch) | |
tree | e51c52964164df96c126e134437ffb074c8742b1 /scripts/src/main.lua | |
parent | e2978b793fc9d15db482d286b32a78c439c5b55e (diff) |
Add Lua-cleaning ability to srcclean
Diffstat (limited to 'scripts/src/main.lua')
-rw-r--r-- | scripts/src/main.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/src/main.lua b/scripts/src/main.lua index 4c460f1c212..d52cfbf36aa 100644 --- a/scripts/src/main.lua +++ b/scripts/src/main.lua @@ -223,7 +223,7 @@ end ext_lib("jpeg"), "7z", } -if (STANDALONE~=true) then +if (STANDALONE~=true) then links { ext_lib("lua"), "lualibs", @@ -267,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 { @@ -378,6 +378,6 @@ end debugargs (_OPTIONS["DEBUG_ARGS"]) else debugargs ("-window") - end - + end + end |