diff options
| author | ruki <[email protected]> | 2020-05-22 23:06:53 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-05-22 12:41:21 +0800 |
| commit | 5ad2eaee8cd65987359dbdfc5149bdd61b9260fc (patch) | |
| tree | 9a33ecad69b013b2bbf07153f7ef26700adbfcca | |
| parent | adad9bc3ad159e5cf327d2058ff212c831fedcfd (diff) | |
show platforms and targets
| -rw-r--r-- | xmake/plugins/show/lists/platforms.lua | 28 | ||||
| -rw-r--r-- | xmake/plugins/show/lists/targets.lua | 35 |
2 files changed, 63 insertions, 0 deletions
diff --git a/xmake/plugins/show/lists/platforms.lua b/xmake/plugins/show/lists/platforms.lua new file mode 100644 index 000000000..0f9d2507c --- /dev/null +++ b/xmake/plugins/show/lists/platforms.lua @@ -0,0 +1,28 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015-2020, TBOOX Open Source Group. +-- +-- @author ruki +-- @file platforms.lua +-- + +-- imports +import("core.platform.platform") +import(".showlist") + +-- show all platforms +function main() + showlist(platform.plats()) +end diff --git a/xmake/plugins/show/lists/targets.lua b/xmake/plugins/show/lists/targets.lua new file mode 100644 index 000000000..7089fc53f --- /dev/null +++ b/xmake/plugins/show/lists/targets.lua @@ -0,0 +1,35 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015-2020, TBOOX Open Source Group. +-- +-- @author ruki +-- @file targets.lua +-- + +-- imports +import("core.project.config") +import("core.project.project") +import("core.platform.platform") +import(".showlist") + +-- show all platforms +function main() + config.load() + local targets = {} + for name, _ in pairs(project.targets()) do + table.insert(targets, name) + end + showlist(targets) +end |
