]> git.tdb.fi Git - builder.git/blob - plugins/builtin/compilecommandsjson.h
Rearrange sources into subdirectories
[builder.git] / plugins / builtin / 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 private:
10         
11 public:
12         CompileCommandsJson(Builder &, const SourcePackage &);
13
14         const char *get_type() const override { return "CompileCommandsJson"; }
15
16 protected:
17         void find_dependencies() override;
18 };
19
20 #endif