summaryrefslogtreecommitdiff
path: root/xmake/scripts/action/_config.lua
blob: 25525748fcd86146a53952ccdcb06f78d93d9ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
--!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 utils     = require("base/utils")
local config    = require("base/config")
local project   = require("base/project")
local makefile  = require("base/makefile")
local platform  = require("platform/platform")

-- need access to the given file?
function _config.need(name)

    -- check
    assert(name)

    -- the accessors
    local accessors = { config = true, global = true, project = true, platform = true }

    -- need it?
    return accessors[name]
end

-- done 
function _config.done()

    -- the options
    local options = xmake._OPTIONS
    assert(options)

    -- check target
    if not project.checktarget(options.target) then
        return false
    end

    -- trace
    print("configure ...")

    -- save the configure
    if not config.save() then
        -- error
        utils.error("save configure failed!")
        return false
    end

    -- make the configure file for the given target
    if not project.makeconf(options.target) then
        -- error
        utils.error("make configure failed!")
        return false
    end

    -- make makefile
    if not makefile.make() then
        -- error
        utils.error("make makefile failed!")
        return false
    end

    -- dump configure
    config.dump()

    -- trace
    print("configure ok!")

    -- ok
    return true
end

-- the menu
function _config.menu()

    return {
                -- xmake f
                shortname = 'f'

                -- usage
            ,   usage = "xmake config|f [options] [target]"

                -- description
            ,   description = "Configure the project."

                -- options
            ,   options = 
                {
                    {'c', "clean",      "k", nil,           "Clean the cached configure and configure all again."           }

                ,   {}
                ,   {'p', "plat",       "kv", xmake._HOST,  "Compile for the given platform."                               
                                                          , function () 
                                                                local descriptions = {}
                                                                local plats = platform.plats()
                                                                if plats then
                                                                    for i, plat in ipairs(plats) do
                                                                        descriptions[i] = "    - " .. plat
                                                                    end
                                                                end
                                                                return descriptions
                                                            end                                                             }
                ,   {'a', "arch",       "kv", "auto",       "Compile for the given architecture."                               
                                                          , function () 
                                                                local descriptions = {}
                                                                local plats = platform.plats()
                                                                if plats then
                                                                    for i, plat in ipairs(plats) do
                                                                        descriptions[i] = "    - " .. plat .. ":"
                                                                        local archs = platform.archs(plat)
                                                                        if archs then
                                                                            for _, arch in ipairs(archs) do
                                                                                descriptions[i] = descriptions[i] .. " " .. arch
                                                                            end
                                                                        end
                                                                    end
                                                                end
                                                                return descriptions
                                                            end                                                             }
                ,   {'m', "mode",       "kv", "release",    "Compile for the given mode." 
                                                          , "    - debug"
                                                          , "    - release"
                                                          , "    - profile"                                                 }
                ,   {nil, "host",       "kv", xmake._HOST,  "The current host environment."                                 }

                    -- the options for project
                ,   function () return project.menu() end

                ,   {}
                ,   {nil, "make",       "kv", "auto",     "Set the make path."                                              }
                ,   {nil, "ccache",     "kv", "auto",     "Enable or disable the c/c++ compiler cache."                     }

                ,   {}
                ,   {nil, "cross",      "kv", nil,          "The cross toolchains prefix"   
                                                          , ".e.g"
                                                          , "    - i386-mingw32-"
                                                          , "    - arm-linux-androideabi-"                                  }
                ,   {nil, "toolchains", "kv", nil,          "The cross toolchains directory"                                }

                ,   {}
                ,   {nil, "cc",         "kv", nil,          "The C Compiler"                                                }
                ,   {nil, "cxx",        "kv", nil,          "The C++ Compiler"                                              }
                ,   {nil, "cflags",     "kv", nil,          "The C Compiler Flags"                                          }
                ,   {nil, "cxflags",    "kv", nil,          "The C/C++ compiler Flags"                                      }
                ,   {nil, "cxxflags",   "kv", nil,          "The C++ Compiler Flags"                                        }

                ,   {}
                ,   {nil, "as",         "kv", nil,          "The Assembler"                                                 }
                ,   {nil, "asflags",    "kv", nil,          "The Assembler Flags"                                           }
               
                ,   {}
                ,   {nil, "ld",         "kv", nil,          "The Linker"                                                    }
                ,   {nil, "ldflags",    "kv", nil,          "The Binary Linker Flags"                                       }

                ,   {}
                ,   {nil, "ar",         "kv", nil,          "The Static Library Linker"                                     }
                ,   {nil, "arflags",    "kv", nil,          "The Static Library Linker Flags"                               }

                ,   {}
                ,   {nil, "sh",         "kv", nil,          "The Shared Library Linker"                                     }
                ,   {nil, "shflags",    "kv", nil,          "The Shared Library Linker Flags"                               }

                    -- the options for all platforms
                ,   function () return platform.menu("config") end

                ,   {}
                ,   {'f', "file",       "kv", "xmake.lua",  "Read a given xmake.lua file."                                  }
                ,   {'P', "project",    "kv", nil,          "Change to the given project directory."
                                                          , "Search priority:"
                                                          , "    1. The Given Command Argument"
                                                          , "    2. The Envirnoment Variable: XMAKE_PROJECT_DIR"
                                                          , "    3. The Current Directory"                                  }
                ,   {'o', "buildir",    "kv", "build",      "Set the build directory."                                      }


                ,   {}
                ,   {'v', "verbose",    "k",  nil,          "Print lots of verbose information."                            }
                ,   {nil, "version",    "k",  nil,          "Print the version number and exit."                            }
                ,   {'h', "help",       "k",  nil,          "Print this help message and exit."                             }
         
                ,   {}
                ,   {nil, "target",     "v",  "all",        "Configure for the given target."                               }
                }
            }
end

-- return module: _config
return _config