X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.h;h=d763dd572f97b084a9f9c7aa0b5bd831eaa632ac;hb=407b96515a5246384847d1835a2d69704e941ea1;hp=cb9a56eb75814cdba42d4580ef3ae697067d87de;hpb=66d1078c04849ec17a7343d0494d6ed087e04318;p=builder.git diff --git a/source/binary.h b/source/binary.h index cb9a56e..d763dd5 100644 --- a/source/binary.h +++ b/source/binary.h @@ -1,13 +1,7 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef BINARY_H_ #define BINARY_H_ +#include "buildinfo.h" #include "filetarget.h" class Component; @@ -17,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 objects; + + Binary(Builder &, const Msp::FS::Path &); + Binary(Builder &, const Component &, const std::string &, const std::list &); - Binary(Builder &, const Component &, const std::list &); public: - const Component &get_component() const { return comp; } - virtual void find_depends(); -protected: - virtual Action *create_action(); + virtual void collect_build_info(BuildInfo &) const; - /** 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: + virtual void find_dependencies(); }; #endif