summaryrefslogtreecommitdiff
path: root/xmake/plugins/check/checker.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2023-02-02 22:35:45 +0800
committerruki <[email protected]>2023-02-02 22:35:45 +0800
commit3ccae48c676e8a08e811b421676ba682e32ec8a7 (patch)
tree500051a06590e38f7c6fdf8a8091338262c83f88 /xmake/plugins/check/checker.lua
parent1804f783f3b7fa873e9a0f745788cf86518dda26 (diff)
improve symbols checker
Diffstat (limited to 'xmake/plugins/check/checker.lua')
-rw-r--r--xmake/plugins/check/checker.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/plugins/check/checker.lua b/xmake/plugins/check/checker.lua
index b49233328..d15655629 100644
--- a/xmake/plugins/check/checker.lua
+++ b/xmake/plugins/check/checker.lua
@@ -28,7 +28,10 @@ function checkers()
checkers = {
-- target api checkers
["api.target.version"] = {description = "Check version configuration in target."},
+ ["api.target.strip"] = {description = "Check strip configuration in target."},
["api.target.optimize"] = {description = "Check optimize configuration in target."},
+ ["api.target.symbols"] = {description = "Check symbols configuration in target."},
+ ["api.target.fpmodels"] = {description = "Check fpmodels configuration in target."},
["api.target.warnings"] = {description = "Check warnings configuration in target."},
["api.target.languages"] = {description = "Check languages configuration in target."},
["api.target.packages"] = {description = "Check packages configuration in target."},