X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.h;h=d763dd572f97b084a9f9c7aa0b5bd831eaa632ac;hb=HEAD;hp=7581541bd3d9d1a726e273460ecbbd02d56e47fd;hpb=c51411c4b3ed4e6a0d8343b848db3dc736bc7857;p=builder.git diff --git a/source/binary.h b/source/binary.h deleted file mode 100644 index 7581541..0000000 --- a/source/binary.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef BINARY_H_ -#define BINARY_H_ - -#include "filetarget.h" - -class Component; -class ObjectFile; - -/** -Produces a binary file, which may be either a standalone executable or a shared -library. -*/ -class Binary: public FileTarget -{ -protected: - std::list objects; - - Binary(Builder &, const Msp::FS::Path &); - Binary(Builder &, const Component &, const std::string &, const std::list &); - -public: - virtual void collect_build_info(BuildInfo &) const; - -protected: - virtual void find_dependencies(); -}; - -#endif