]> git.tdb.fi Git - builder.git/blobdiff - plugins/android/androidassetpackagingtool.h
Rearrange sources into subdirectories
[builder.git] / plugins / android / androidassetpackagingtool.h
diff --git a/plugins/android/androidassetpackagingtool.h b/plugins/android/androidassetpackagingtool.h
new file mode 100644 (file)
index 0000000..c03c097
--- /dev/null
@@ -0,0 +1,23 @@
+#ifndef ANDROIDASSETPACKAGINGTOOL_H_
+#define ANDROIDASSETPACKAGINGTOOL_H_
+
+#include <msp/builder/tool.h>
+
+class AndroidResourceBundle;
+class AndroidSdk;
+
+class AndroidAssetPackagingTool: public Tool
+{
+private:
+       const AndroidSdk &sdk;
+
+public:
+       AndroidAssetPackagingTool(Builder &, const AndroidSdk &);
+
+       Target *create_target(const std::vector<Target *> &, const std::string &) override;
+
+private:
+       static ExternalTask::Arguments _run(const AndroidResourceBundle &, Msp::FS::Path &);
+};
+
+#endif