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