summaryrefslogtreecommitdiff
path: root/tools/build/src/tools/types/cpp.py
blob: a6703255c6071a758c9c5116c26786b1756248b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright David Abrahams 2004. Distributed under the Boost
# Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

from b2.build import type

def register ():
    type.register_type('CPP', ['cpp', 'cxx', 'cc'])
    type.register_type('H', ['h'])
    type.register_type('HPP', ['hpp'], 'H')
    type.register_type('C', ['c'])

register ()