]> git.tdb.fi Git - builder.git/blobdiff - source/binary.h
Mark overridden virtual functions as such
[builder.git] / source / binary.h
index 7c1a701bcc973e43f675346819e0df4a10f80c01..a8d10f0384008a9599a8a001b5a6c87294e63ca2 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef BINARY_H_
 #define BINARY_H_
 
+#include "buildinfo.h"
 #include "filetarget.h"
 
 class Component;
@@ -10,21 +11,22 @@ class ObjectFile;
 Produces a binary file, which may be either a standalone executable or a shared
 library.
 */
-class Binary: public virtual FileTarget
+class Binary: public FileTarget
 {
+private:
+       BuildInfo static_binfo;
+
 protected:
-       const Component ∁
+       std::list<ObjectFile *> objects;
+
+       Binary(Builder &, const Msp::FS::Path &);
+       Binary(Builder &, const Component &, const std::string &, const std::list<ObjectFile *> &);
 
-       Binary(Builder &, const Component &, const std::list<ObjectFile *> &);
 public:
-       const Component &get_component() const { return comp; }
-       virtual void find_depends();
-protected:
-       virtual Action *create_action();
+       void collect_build_info(BuildInfo &) const override;
 
-       /** Returns the path for the binary.  We can't do this in the constructor
-       since we need to pass the value to the Target c'tor. */
-       static Msp::FS::Path generate_target_path(const Component &);
+protected:
+       void find_dependencies() override;
 };
 
 #endif