summaryrefslogtreecommitdiff
path: root/xmake/plugins/check/checker.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2023-02-20 22:48:59 +0800
committerruki <[email protected]>2023-02-20 22:48:59 +0800
commit0975a3fd60b71a31806a51f3556201f107a33d2e (patch)
treec050da02439e177d1dd18a3fe65b8b2f814b788e /xmake/plugins/check/checker.lua
parent2e04812cae7e38d9b097b40cce90b34ec6fb8fca (diff)
add more timely checkers
Diffstat (limited to 'xmake/plugins/check/checker.lua')
-rw-r--r--xmake/plugins/check/checker.lua24
1 files changed, 12 insertions, 12 deletions
diff --git a/xmake/plugins/check/checker.lua b/xmake/plugins/check/checker.lua
index a6b8bb995..e80050849 100644
--- a/xmake/plugins/check/checker.lua
+++ b/xmake/plugins/check/checker.lua
@@ -28,23 +28,23 @@ function checkers()
checkers = {
-- target api checkers
["api.target.version"] = {description = "Check version configuration in target."},
- ["api.target.kind"] = {description = "Check kind 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.vectorexts"] = {description = "Check vectorexts configuration in target."},
- ["api.target.exceptions"] = {description = "Check exceptions configuration in target."},
+ ["api.target.kind"] = {description = "Check kind configuration in target.", timely = true},
+ ["api.target.strip"] = {description = "Check strip configuration in target.", timely = true},
+ ["api.target.optimize"] = {description = "Check optimize configuration in target.", timely = true},
+ ["api.target.symbols"] = {description = "Check symbols configuration in target.", timely = true},
+ ["api.target.fpmodels"] = {description = "Check fpmodels configuration in target.", timely = true},
+ ["api.target.warnings"] = {description = "Check warnings configuration in target.", timely = true},
+ ["api.target.languages"] = {description = "Check languages configuration in target.", timely = true},
+ ["api.target.vectorexts"] = {description = "Check vectorexts configuration in target.", timely = true},
+ ["api.target.exceptions"] = {description = "Check exceptions configuration in target.", timely = true},
["api.target.packages"] = {description = "Check packages configuration in target."},
["api.target.files"] = {description = "Check files configuration in target."},
["api.target.headerfiles"] = {description = "Check header files configuration in target."},
["api.target.installfiles"] = {description = "Check install files configuration in target."},
["api.target.configfiles"] = {description = "Check config files configuration in target."},
- ["api.target.linkdirs"] = {description = "Check linkdirs configuration in target."},
- ["api.target.includedirs"] = {description = "Check includedirs configuration in target."},
- ["api.target.frameworkdirs"] = {description = "Check frameworkdirs configuration in target."},
+ ["api.target.linkdirs"] = {description = "Check linkdirs configuration in target.", timely = true},
+ ["api.target.includedirs"] = {description = "Check includedirs configuration in target.", timely = true},
+ ["api.target.frameworkdirs"] = {description = "Check frameworkdirs configuration in target.", timely = true},
["api.target.cflags"] = {description = "Check c compiler flags configuration in target."},
["api.target.cxflags"] = {description = "Check c/c++ compiler flags configuration in target."},
["api.target.cxxflags"] = {description = "Check c++ compiler flags configuration in target."},