X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.h;h=d763dd572f97b084a9f9c7aa0b5bd831eaa632ac;hb=HEAD;hp=b689a1d4fab8368f2ccd45a23dd7e57129a1a889;hpb=03227882aef8b448065e6ca9cda9b7722b7a9753;p=builder.git diff --git a/source/binary.h b/source/binary.h deleted file mode 100644 index b689a1d..0000000 --- a/source/binary.h +++ /dev/null @@ -1,26 +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 &); - - virtual void find_dependencies(); - - virtual std::string create_build_signature() const; -}; - -#endif