X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=plugins%2Fbuiltin%2Fcompilecommandsjson.h;fp=plugins%2Fbuiltin%2Fcompilecommandsjson.h;h=be9c4480f2871564d39a3b2f786f40e1b08a4efc;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=0000000000000000000000000000000000000000;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;p=builder.git diff --git a/plugins/builtin/compilecommandsjson.h b/plugins/builtin/compilecommandsjson.h new file mode 100644 index 0000000..be9c448 --- /dev/null +++ b/plugins/builtin/compilecommandsjson.h @@ -0,0 +1,20 @@ +#ifndef COMPILECOMMANDSJSON_H_ +#define COMPILECOMMANDSJSON_H_ + +#include +#include + +class CompileCommandsJson: public FileTarget +{ +private: + +public: + CompileCommandsJson(Builder &, const SourcePackage &); + + const char *get_type() const override { return "CompileCommandsJson"; } + +protected: + void find_dependencies() override; +}; + +#endif