]> git.tdb.fi Git - builder.git/blob - plugins/clang/clangcompiler.cpp
Rearrange sources into subdirectories
[builder.git] / plugins / clang / clangcompiler.cpp
1 #include "clangcompiler.h"
2
3 using namespace std;
4 using namespace Msp;
5
6 ClangCompiler::ClangCompiler(Builder &b, const Architecture &a, const string &t):
7         CustomizedTool(b, t, a)
8 {
9         set_command((tag=="CXX" ? "clang++" : "clang"), true);
10 }