]> git.tdb.fi Git - builder.git/blob - plugins/android/androidlinker.h
Rearrange sources into subdirectories
[builder.git] / plugins / android / androidlinker.h
1 #ifndef ANDROIDLINKER_H_
2 #define ANDROIDLINKER_H_
3
4 #include <msp/builder/customizedtool.h>
5
6 class AndroidNdk;
7
8 class AndroidLinker: public CustomizedTool
9 {
10 public:
11         AndroidLinker(Builder &, const Architecture &, const AndroidNdk &);
12
13         Target *create_target(const std::vector<Target *> &, const std::string &) override;
14 };
15
16 #endif