https://github.com/dubzzz/py-cpp-dependencies
Build the dependency tree of a C/C++ directory
https://github.com/dubzzz/py-cpp-dependencies
Last synced: 7 months ago
JSON representation
Build the dependency tree of a C/C++ directory
- Host: GitHub
- URL: https://github.com/dubzzz/py-cpp-dependencies
- Owner: dubzzz
- License: mit
- Created: 2015-01-24T01:17:45.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-24T01:28:38.000Z (over 10 years ago)
- Last Synced: 2025-01-25T22:38:33.031Z (8 months ago)
- Language: Python
- Size: 461 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# py-cpp-dependencies
Build the dependency tree of a C/C++ directory##Details concerning how *scan_path* and *includes* variables work:##
###Example #1:###
scan_path = "/path/to/source/files"
includes = ["/path/to/source",]
\#include "files/toto.hpp" **may mean** /path/to/source/files/toto.hpp
###Example #2:###
scan_path = "/path/to/source"
includes = ["/path/to/source/internal","/path/to/source/external",]
\#include "toto.hpp" **may mean** /path/to/source/internal/toto.hpp **or** /path/to/source/external/toto.hpp