X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=plugins%2Fandroid%2Fandroidassetpackagingtool.h;fp=plugins%2Fandroid%2Fandroidassetpackagingtool.h;h=c03c097980bd28e58cd6dbcc4b4061ba8d2bdf68;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=0000000000000000000000000000000000000000;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;p=builder.git diff --git a/plugins/android/androidassetpackagingtool.h b/plugins/android/androidassetpackagingtool.h new file mode 100644 index 0000000..c03c097 --- /dev/null +++ b/plugins/android/androidassetpackagingtool.h @@ -0,0 +1,23 @@ +#ifndef ANDROIDASSETPACKAGINGTOOL_H_ +#define ANDROIDASSETPACKAGINGTOOL_H_ + +#include + +class AndroidResourceBundle; +class AndroidSdk; + +class AndroidAssetPackagingTool: public Tool +{ +private: + const AndroidSdk &sdk; + +public: + AndroidAssetPackagingTool(Builder &, const AndroidSdk &); + + Target *create_target(const std::vector &, const std::string &) override; + +private: + static ExternalTask::Arguments _run(const AndroidResourceBundle &, Msp::FS::Path &); +}; + +#endif