]> git.tdb.fi Git - builder.git/blobdiff - source/gnuobjccompiler.h
Add target and tools for compiling Objective-C sources
[builder.git] / source / gnuobjccompiler.h
diff --git a/source/gnuobjccompiler.h b/source/gnuobjccompiler.h
new file mode 100644 (file)
index 0000000..11fbd91
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef GNUOBJCCOMPILER_H_
+#define GNUOBJCCOMPILER_H_
+
+#include "gnucompiler.h"
+
+class GnuObjCCompiler: public GnuCompiler
+{
+public:
+       GnuObjCCompiler(Builder &, const Architecture &);
+
+       virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
+       virtual Target *create_source(const Msp::FS::Path &) const;
+};
+
+#endif