X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=plugins%2Fbuiltin%2Fcompilecommandsgenerator.h;fp=plugins%2Fbuiltin%2Fcompilecommandsgenerator.h;h=ec4a5016304e2490e3d901f92d28b3311af0f1fa;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=0000000000000000000000000000000000000000;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;p=builder.git diff --git a/plugins/builtin/compilecommandsgenerator.h b/plugins/builtin/compilecommandsgenerator.h new file mode 100644 index 0000000..ec4a501 --- /dev/null +++ b/plugins/builtin/compilecommandsgenerator.h @@ -0,0 +1,19 @@ +#ifndef COMPILECOMMANDSGENERATOR_H_ +#define COMPILECOMMANDSGENERATOR_H_ + +#include + +class CompileCommandsJson; + +class CompileCommandsGenerator: public Tool +{ +public: + CompileCommandsGenerator(Builder &); + + Target *create_target(const std::vector &, const std::string &) override; + +private: + static bool _run(const CompileCommandsJson &); +}; + +#endif