summaryrefslogtreecommitdiff
path: root/xmake/plugins/check/checkers/api/target/optimize.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2023-02-21 00:43:15 +0800
committerruki <[email protected]>2023-02-21 00:43:15 +0800
commite0ac2fd899e03be83ad506616e0dab931ea69969 (patch)
tree5da4d14711ef983727061071c872ef836f7b960b /xmake/plugins/check/checkers/api/target/optimize.lua
parent559f90b555e5227716a6762d545c9c2171fef55c (diff)
move checker
Diffstat (limited to 'xmake/plugins/check/checkers/api/target/optimize.lua')
-rw-r--r--xmake/plugins/check/checkers/api/target/optimize.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/xmake/plugins/check/checkers/api/target/optimize.lua b/xmake/plugins/check/checkers/api/target/optimize.lua
deleted file mode 100644
index 99731ba19..000000000
--- a/xmake/plugins/check/checkers/api/target/optimize.lua
+++ /dev/null
@@ -1,27 +0,0 @@
---!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 optimize.lua
---
-
--- imports
-import(".api_checker")
-
-function main(opt)
- opt = opt or {}
- api_checker.check_targets("optimize", table.join(opt, {values = {"none", "fast", "faster", "fastest", "smallest", "aggressive"}}))
-end