summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2016-01-15 20:17:46 +0800
committerruki <[email protected]>2016-02-15 19:10:24 +0800
commitc358344c4ae08ef99ba965d7a05a3f8d4a9a9a74 (patch)
tree88811fadea4688f255a516e863b9bc38a546bf63
parent3f5759021b3c92aecee2635af97d57025d21c943 (diff)
add sandbox
-rw-r--r--xmake/core/sandbox/sandbox.lua31
1 files changed, 31 insertions, 0 deletions
diff --git a/xmake/core/sandbox/sandbox.lua b/xmake/core/sandbox/sandbox.lua
new file mode 100644
index 000000000..1fd4468f9
--- /dev/null
+++ b/xmake/core/sandbox/sandbox.lua
@@ -0,0 +1,31 @@
+--!The Automatic Cross-platform Build Tool
+--
+-- XMake is free software; you can redistribute it and/or modify
+-- it under the terms of the GNU Lesser General Public License as published by
+-- the Free Software Foundation; either version 2.1 of the License, or
+-- (at your option) any later version.
+--
+-- XMake is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+-- GNU Lesser General Public License for more details.
+--
+-- You should have received a copy of the GNU Lesser General Public License
+-- along with XMake;
+-- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a>
+--
+-- Copyright (C) 2009 - 2015, ruki All rights reserved.
+--
+-- @author ruki
+-- @file sandbox.lua
+--
+
+-- define module: sandbox
+local sandbox = sandbox or {}
+
+-- load modules
+local os = require("base/os")
+local utils = require("base/utils")
+
+-- return module: sandbox
+return sandbox