summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTitanSnow <[email protected]>2017-05-08 10:45:20 +0800
committerTitanSnow <[email protected]>2017-05-08 10:45:20 +0800
commit08da31c158598c48c2b753874d6e805f24878e48 (patch)
treec1848dca032c1ac63def79cd674c5177c265d1cb
parentf949546b3f58c852edf08bd6fc0be97831d04fef (diff)
add sandbox_os.build_configuration()
-rw-r--r--xmake/core/sandbox/modules/os.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/xmake/core/sandbox/modules/os.lua b/xmake/core/sandbox/modules/os.lua
index 4fbc1740b..e374143fa 100644
--- a/xmake/core/sandbox/modules/os.lua
+++ b/xmake/core/sandbox/modules/os.lua
@@ -514,6 +514,11 @@ function sandbox_os.sudol(runner, luafile, luaargv)
sandbox_os.sudov(runner, path.join(sandbox_os.programdir(), "xmake"), table.join(argv, luafile, luaargv))
end
+-- get build_configuration
+function sandbox_os.build_configuration()
+ return os.build_configuration()
+end
+
-- return module
return sandbox_os