]> git.tdb.fi Git - builder.git/blob - plugins/base/compilecommandsjson.h
Comment cleanup and other cosmetic fixes
[builder.git] / plugins / base / compilecommandsjson.h
1 #ifndef COMPILECOMMANDSJSON_H_
2 #define COMPILECOMMANDSJSON_H_
3
4 #include <msp/builder/sourcepackage.h>
5 #include <msp/builder/filetarget.h>
6
7 class CompileCommandsJson: public FileTarget
8 {
9 public:
10         CompileCommandsJson(Builder &, const SourcePackage &);
11
12         const char *get_type() const override { return "CompileCommandsJson"; }
13
14 protected:
15         void find_dependencies() override;
16 };
17
18 #endif