diff options
| author | ruki <[email protected]> | 2023-01-31 22:54:01 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-01-31 22:54:01 +0800 |
| commit | 73ad9cdddf5168a19a738bd098a775c22a390a85 (patch) | |
| tree | f3f98cabe02eca5d89a793713be1d782f6a8cd15 /xmake/plugins/check/xmake.lua | |
| parent | 7dccbc709bafaec3be01d9723b7b9150f7092a5b (diff) | |
add xmake check stub
Diffstat (limited to 'xmake/plugins/check/xmake.lua')
| -rw-r--r-- | xmake/plugins/check/xmake.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/xmake/plugins/check/xmake.lua b/xmake/plugins/check/xmake.lua new file mode 100644 index 000000000..5fce74cd6 --- /dev/null +++ b/xmake/plugins/check/xmake.lua @@ -0,0 +1,30 @@ +--!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-present, TBOOX Open Source Group. +-- +-- @author ruki +-- @file xmake.lua +-- + +task("check") + set_category("plugin") + on_run("main") + set_menu { + usage = "xmake check [options] [arguments]", + description = "Check the project configuration.", + options = { + } + } + |
