]> git.tdb.fi Git - builder.git/blobdiff - source/sharedlibrary.h
Support building static libraries (but not using them yet)
[builder.git] / source / sharedlibrary.h
diff --git a/source/sharedlibrary.h b/source/sharedlibrary.h
new file mode 100644 (file)
index 0000000..96a38fa
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef SHAREDLIB_H_
+#define SHAREDLIB_H_
+
+#include "executable.h"
+
+class SharedLibrary: public Executable
+{
+public:
+       SharedLibrary(Builder &, const Component &, const std::list<ObjectFile *> &);
+       const char *get_type() const { return "SharedLibrary"; }
+};
+
+#endif