diff options
author | 2016-02-16 17:35:27 +0100 | |
---|---|---|
committer | 2016-02-16 17:35:27 +0100 | |
commit | 9eb2734495cda6ff0391f317ca2565b421476738 (patch) | |
tree | 45819d6c0d38cf5cc890c31378e82e394b9d06e8 /scripts/genie.lua | |
parent | e1ace736267d354caa3c9e1ff844bdc88d645864 (diff) |
BGFX mandatory requirement (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 70901cf038f..984196e2af7 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -276,15 +276,6 @@ newoption { } newoption { - trigger = "USE_BGFX", - description = "Use of BGFX.", - allowed = { - { "0", "Disabled" }, - { "1", "Enabled" }, - } -} - -newoption { trigger = "DEPRECATED", description = "Generate deprecation warnings during compilation.", allowed = { @@ -427,11 +418,6 @@ if _OPTIONS["NOASM"]=="1" and not _OPTIONS["FORCE_DRC_C_BACKEND"] then _OPTIONS["FORCE_DRC_C_BACKEND"] = "1" end -USE_BGFX = 1 -if(_OPTIONS["USE_BGFX"]~=nil) then - USE_BGFX = tonumber(_OPTIONS["USE_BGFX"]) -end - if(_OPTIONS["TOOLCHAIN"] == nil) then _OPTIONS['TOOLCHAIN'] = "" end |