├── .vscode └── launch.json ├── LICENSE ├── README.md ├── main.py ├── screenshots ├── direct_deps.png ├── indirect_deps.png └── matrix.png └── test ├── a.c ├── b.h ├── blank.h ├── c.h ├── d.h └── test.c /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/main.py -------------------------------------------------------------------------------- /screenshots/direct_deps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/screenshots/direct_deps.png -------------------------------------------------------------------------------- /screenshots/indirect_deps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/screenshots/indirect_deps.png -------------------------------------------------------------------------------- /screenshots/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/screenshots/matrix.png -------------------------------------------------------------------------------- /test/a.c: -------------------------------------------------------------------------------- 1 | #include "b.h" 2 | -------------------------------------------------------------------------------- /test/b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/test/b.h -------------------------------------------------------------------------------- /test/blank.h: -------------------------------------------------------------------------------- 1 | blank -------------------------------------------------------------------------------- /test/c.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/d.h: -------------------------------------------------------------------------------- 1 | #include "b.h" 2 | -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/cpp-dependency-analyzer/HEAD/test/test.c --------------------------------------------------------------------------------