Files
tldr/pages.zh/common/cppclean.md

20 lines
479 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# cppclean
> 查找C++项目中的未使用代码。
> 更多信息:<https://github.com/myint/cppclean>。
- 在项目目录中运行:
`cppclean {{path/to/project}}`
- 在头文件位于`inc1/``inc2/`目录的项目中运行:
`cppclean {{path/to/project}} --include-path {{inc1}} --include-path {{inc2}}`
- 在特定文件`main.cpp`上运行:
`cppclean {{main.cpp}}`
- 在当前目录中运行排除“build”目录
`cppclean {{.}} --exclude {{build}}`