summaryrefslogtreecommitdiff
path: root/Tools/c-analyzer/c_analyzer_common/__init__.py
blob: 888b16ff41d10d0ca336c9efb4d045e8cb516634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os.path


PKG_ROOT = os.path.dirname(__file__)
DATA_DIR = os.path.dirname(PKG_ROOT)
REPO_ROOT = os.path.dirname(
        os.path.dirname(DATA_DIR))

SOURCE_DIRS = [os.path.join(REPO_ROOT, name) for name in [
        'Include',
        'Python',
        'Parser',
        'Objects',
        'Modules',
        ]]


# Clean up the namespace.
del os