diff options
| author | ruki <[email protected]> | 2017-01-05 13:20:57 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-01-06 17:20:08 +0800 |
| commit | 63463f04bee8ea369c2bbe0306f1e9316333f0dc (patch) | |
| tree | bdc6c663fa8877f20779d6032c18db84c2626440 /xmake/languages/c++/load.lua | |
| parent | 06a7207823add9becd9f0929c9ed1b4eb2a1ab44 (diff) | |
uses loaded return value for language and platform
Diffstat (limited to 'xmake/languages/c++/load.lua')
| -rw-r--r-- | xmake/languages/c++/load.lua | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/xmake/languages/c++/load.lua b/xmake/languages/c++/load.lua new file mode 100644 index 000000000..b13b81bb4 --- /dev/null +++ b/xmake/languages/c++/load.lua @@ -0,0 +1,93 @@ +--!The Make-like Build Utility based on Lua +-- +-- 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 load.lua +-- + +-- imports + + +-- load it +function main() + + -- init flags + _g.cflags = {} + _g.cxflags = {} + _g.cxxflags = {} + _g.ldflags = {} + _g.arflags = {} + _g.shflags = {} + + -- init apis + _g.apis = {} + _g.apis.values = + { + -- target.set_xxx + "target.set_config_h_prefix" + -- target.add_xxx + , "target.add_links" + , "target.add_cflags" + , "target.add_cxflags" + , "target.add_cxxflags" + , "target.add_ldflags" + , "target.add_arflags" + , "target.add_shflags" + , "target.add_defines" + , "target.add_undefines" + , "target.add_defines_h" + , "target.add_undefines_h" + -- option.add_xxx + , "option.add_cincludes" + , "option.add_cxxincludes" + , "option.add_cfuncs" + , "option.add_cxxfuncs" + , "option.add_ctypes" + , "option.add_cxxtypes" + , "option.add_links" + , "option.add_cflags" + , "option.add_cxflags" + , "option.add_cxxflags" + , "option.add_ldflags" + , "option.add_arflags" + , "option.add_shflags" + , "option.add_defines" + , "option.add_defines_if_ok" + , "option.add_defines_h_if_ok" + , "option.add_undefines" + , "option.add_undefines_if_ok" + , "option.add_undefines_h_if_ok" + } + _g.apis.pathes = + { + -- target.set_xxx + "target.set_headerdir" + , "target.set_config_h" + -- target.add_xxx + , "target.add_headers" + , "target.add_linkdirs" + , "target.add_includedirs" + -- option.add_xxx + , "option.add_linkdirs" + , "option.add_includedirs" + } + + return _g +end + + |
