]> git.tdb.fi Git - builder.git/blobdiff - source/binary.h
Properly support multiple choice features
[builder.git] / source / binary.h
index cb9a56eb75814cdba42d4580ef3ae697067d87de..b689a1d4fab8368f2ccd45a23dd7e57129a1a889 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef BINARY_H_
 #define BINARY_H_
 
@@ -17,21 +10,17 @@ 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
 {
 protected:
-       const Component ∁
+       std::list<ObjectFile *> objects;
 
-       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();
+       Binary(Builder &, const Msp::FS::Path &);
+       Binary(Builder &, const Component &, const std::string &, const std::list<ObjectFile *> &);
+
+       virtual void find_dependencies();
 
-       /** 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 &);
+       virtual std::string create_build_signature() const;
 };
 
 #endif