summaryrefslogtreecommitdiff
path: root/xmake/includes/check_ctypes.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-10-02 23:29:03 +0800
committerruki <[email protected]>2021-10-02 23:29:03 +0800
commite80a41789b0de5f2249c15d57486fd3a4b40ff99 (patch)
treef3a893345c8da889236e68775dc3de92f1a092e9 /xmake/includes/check_ctypes.lua
parentd4789ff5e968294bf2e9831209d0cf61b61c9d43 (diff)
save and restore scope
Diffstat (limited to 'xmake/includes/check_ctypes.lua')
-rw-r--r--xmake/includes/check_ctypes.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/xmake/includes/check_ctypes.lua b/xmake/includes/check_ctypes.lua
index e0c3caa47..b3f59b04e 100644
--- a/xmake/includes/check_ctypes.lua
+++ b/xmake/includes/check_ctypes.lua
@@ -28,6 +28,7 @@
function check_ctypes(definition, types, opt)
opt = opt or {}
local optname = "__" .. (opt.name or definition)
+ save_scope()
option(optname)
add_ctypes(types)
add_defines(definition)
@@ -47,6 +48,7 @@ function check_ctypes(definition, types, opt)
add_cincludes(opt.includes)
end
option_end()
+ restore_scope()
add_options(optname)
end
@@ -63,6 +65,7 @@ function configvar_check_ctypes(definition, types, opt)
opt = opt or {}
local optname = "__" .. (opt.name or definition)
local defname, defval = unpack(definition:split('='))
+ save_scope()
option(optname)
add_ctypes(types)
if opt.default == nil then
@@ -84,6 +87,7 @@ function configvar_check_ctypes(definition, types, opt)
add_cincludes(opt.includes)
end
option_end()
+ restore_scope()
if opt.default == nil then
add_options(optname)
else