]> git.tdb.fi Git - builder.git/blobdiff - source/androidresourcefile.h
A bunch of new tools and targets to build Android packages
[builder.git] / source / androidresourcefile.h
diff --git a/source/androidresourcefile.h b/source/androidresourcefile.h
new file mode 100644 (file)
index 0000000..5f3cd3a
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef ANDROIDRESOURCEFILE_H_
+#define ANDROIDRESOURCEFILE_H_
+
+#include "filetarget.h"
+
+/**
+A file destined to be used as a resource in an Android application.
+*/
+class AndroidResourceFile: public FileTarget
+{
+private:
+       std::string resource_type;
+
+public:
+       AndroidResourceFile(Builder &, const Component &, const Msp::FS::Path &);
+
+       virtual const char *get_type() const { return "AndroidResourceFile"; }
+};
+
+#endif