summaryrefslogtreecommitdiff
path: root/xmake/scripts/action/_config.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2015-05-15 08:39:20 +0800
committerruki <[email protected]>2015-05-15 08:39:20 +0800
commitab36dca23f1cd80720e9d0eb2c3ce72d5895ba3e (patch)
tree719784494abe3ae5a3c96f779658893fe09061c0 /xmake/scripts/action/_config.lua
parenta2c560f7c2f1f4501516d39225d5afdd06dc9c55 (diff)
load xmake.xconf before loading project
Diffstat (limited to 'xmake/scripts/action/_config.lua')
-rw-r--r--xmake/scripts/action/_config.lua48
1 files changed, 48 insertions, 0 deletions
diff --git a/xmake/scripts/action/_config.lua b/xmake/scripts/action/_config.lua
new file mode 100644
index 000000000..a627c61d9
--- /dev/null
+++ b/xmake/scripts/action/_config.lua
@@ -0,0 +1,48 @@
+--!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 _config.lua
+--
+
+-- define module: _config
+local _config = _config or {}
+
+-- load modules
+local io = require("base/io")
+local utils = require("base/utils")
+local config = require("base/config")
+
+-- done the given config
+function _config.done()
+
+ -- dump configs
+ config.dump()
+
+ -- save configs
+ if not config.savexconf() then
+ return false
+ end
+
+ -- ok
+ print("configure ok!")
+ return true
+end
+
+-- return module: _config
+return _config