]> git.tdb.fi Git - builder.git/blobdiff - source/androidcxxcompiler.h
Rudimentary support for compiling things for Android
[builder.git] / source / androidcxxcompiler.h
diff --git a/source/androidcxxcompiler.h b/source/androidcxxcompiler.h
new file mode 100644 (file)
index 0000000..e6c1478
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef ANDROIDCXXCOMPILER_H_
+#define ANDROIDCXXCOMPILER_H_
+
+#include "gnucxxcompiler.h"
+
+class AndroidNdk;
+
+class AndroidCxxCompiler: public GnuCxxCompiler
+{
+private:
+       const AndroidNdk &ndk;
+
+public:
+       AndroidCxxCompiler(Builder &, const Architecture &, const AndroidNdk &);
+
+protected:
+       virtual void do_prepare();
+};
+
+#endif