X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.h;h=b689a1d4fab8368f2ccd45a23dd7e57129a1a889;hb=1dad660f7bbda5ef3239fd6374e0f8a77e19eaaa;hp=ef71a0691b6101df2661d59bf626a42e75978691;hpb=dc4b917034c9d3718f07139e2f0f3631a080c6f3;p=builder.git diff --git a/source/binary.h b/source/binary.h index ef71a06..b689a1d 100644 --- a/source/binary.h +++ b/source/binary.h @@ -13,14 +13,14 @@ library. class Binary: public FileTarget { protected: + std::list objects; + Binary(Builder &, const Msp::FS::Path &); - Binary(Builder &, const Component &, const std::list &); -public: - virtual void find_depends(); -protected: - /** 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 &); + Binary(Builder &, const Component &, const std::string &, const std::list &); + + virtual void find_dependencies(); + + virtual std::string create_build_signature() const; }; #endif