]> git.tdb.fi Git - builder.git/blob - source/gnucxxcompiler.cpp
Big rewrite for a more tool-centric approach
[builder.git] / source / gnucxxcompiler.cpp
1 #include "gnucxxcompiler.h"
2
3 GnuCxxCompiler::GnuCxxCompiler(Builder &b):
4         GnuCompiler(b, "CXX", "g++")
5 {
6         input_suffixes.push_back(".cpp");
7         input_suffixes.push_back(".cc");
8 }