]> git.tdb.fi Git - builder.git/blobdiff - source/executable.h
Support building static libraries (but not using them yet)
[builder.git] / source / executable.h
index 52b0ceedd2cf4adb62d78df66b2c18e920bc0c16..81637a7ae461f334a5866e02e0517eee6a37c5d5 100644 (file)
@@ -11,7 +11,8 @@ class Executable: public Target
 public:
        Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
        const char *get_type() const { return "Executable"; }
-       void find_depends() { }
+       const Component &get_component() const { return comp; }
+       void find_depends();
        Action *build();
 private:
        const Component &comp;