]> git.tdb.fi Git - builder.git/blobdiff - source/androidccompiler.h
Rudimentary support for compiling things for Android
[builder.git] / source / androidccompiler.h
diff --git a/source/androidccompiler.h b/source/androidccompiler.h
new file mode 100644 (file)
index 0000000..f723a00
--- /dev/null
@@ -0,0 +1,14 @@
+#ifndef ANDROIDCCOMPILER_H_
+#define ANDROIDCCOMPILER_H_
+
+#include "gnuccompiler.h"
+
+class AndroidNdk;
+
+class AndroidCCompiler: public GnuCCompiler
+{
+public:
+       AndroidCCompiler(Builder &, const Architecture &, const AndroidNdk &);
+};
+
+#endif