1
0

feat: add detailed rule in BMapInspector

This commit is contained in:
2026-02-02 22:26:41 +08:00
parent ebbea473a4
commit b06bd587f6
15 changed files with 206 additions and 3 deletions

View File

@@ -3,23 +3,37 @@ add_executable(BMapInspector "")
# Setup sources
target_sources(BMapInspector
PRIVATE
# Kernel
BMapInspector.cpp
Utils.cpp
Reporter.cpp
Cli.cpp
Map.cpp
Rule.cpp
# Rules
Rule/GpRules.cpp
Rule/ChirsRules.cpp
Rule/YYCRules.cpp
Rule/ZZQRules.cpp
Rule/BBugRules.cpp
)
# Setup headers
target_sources(BMapInspector
PRIVATE
FILE_SET HEADERS
FILES
# Kernel
Utils.hpp
Reporter.hpp
Cli.hpp
Map.hpp
Rule.hpp
# Rules
Rule/GpRules.hpp
Rule/ChirsRules.hpp
Rule/YYCRules.hpp
Rule/ZZQRules.hpp
Rule/BBugRules.hpp
)
# Setup header infomation
target_include_directories(BMapInspector