summaryrefslogtreecommitdiff
path: root/tools/build/v2/tools/types/__init__.py
blob: 9ee31d13a3117e19d16cda2b378b92b31f793fbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
__all__ = [
    'asm',
    'cpp',
    'exe',
    'html',
    'lib',
    'obj',
    'preprocessed',
    'rsp',
]

def register_all ():
    for i in __all__:
        m = __import__ (__name__ + '.' + i)
        reg = i + '.register ()'
        #exec (reg)

# TODO: (PF) I thought these would be imported automatically. Anyone knows why they aren't?
register_all ()