Imported Upstream version 1.51.0
[platform/upstream/boost.git] / tools / build / v2 / tools / types / cpp.py
index 7b56111..a670325 100644 (file)
@@ -5,6 +5,9 @@
 from b2.build import type
 
 def register ():
-    type.register_type ('CPP', ['cpp', 'cxx', 'cc'])
+    type.register_type('CPP', ['cpp', 'cxx', 'cc'])
+    type.register_type('H', ['h'])
+    type.register_type('HPP', ['hpp'], 'H')
+    type.register_type('C', ['c'])
 
 register ()