summaryrefslogtreecommitdiff
path: root/xmake/tools
diff options
context:
space:
mode:
authorruki <[email protected]>2016-04-23 20:02:18 +0800
committerruki <[email protected]>2016-04-23 20:02:18 +0800
commit48a228f6bb2e4870bf0e4952c0c752ddeae72219 (patch)
tree933c64e6834ef2d5a05ebd52eaffb210737b9033 /xmake/tools
parent31e930871e159dc022ddd1f7a326fcc120e2fb00 (diff)
add iphoneos platform
Diffstat (limited to 'xmake/tools')
-rw-r--r--xmake/tools/lipo.lua54
1 files changed, 54 insertions, 0 deletions
diff --git a/xmake/tools/lipo.lua b/xmake/tools/lipo.lua
new file mode 100644
index 000000000..6a08e0fb7
--- /dev/null
+++ b/xmake/tools/lipo.lua
@@ -0,0 +1,54 @@
+--!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) 2015 - 2016, ruki All rights reserved.
+--
+-- @author ruki
+-- @file lipo.lua
+--
+
+-- imports
+import("core.base.option")
+
+-- init it
+function init(shellname)
+
+ -- save name
+ _g.shellname = shellname or "lipo"
+
+end
+
+-- get the property
+function get(name)
+
+ -- get it
+ return _g[name]
+end
+
+-- run command
+function run(...)
+
+ -- run it
+ os.run(...)
+end
+
+-- check the given flags
+function check(flags)
+
+ -- check it
+ os.run("xcrun -find lipo")
+end
+