diff options
Diffstat (limited to 'build/cxx/target.cxx')
-rw-r--r-- | build/cxx/target.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/cxx/target.cxx b/build/cxx/target.cxx index c4502b4..f57c963 100644 --- a/build/cxx/target.cxx +++ b/build/cxx/target.cxx @@ -21,5 +21,11 @@ namespace build const target_type cxx::static_type { typeid (cxx), "cxx", &file::static_type, &target_factory<cxx>}; + + const target_type h::static_type { + typeid (h), "h", &file::static_type, &target_factory<h>}; + + const target_type c::static_type { + typeid (c), "c", &file::static_type, &target_factory<c>}; } } |