]> git.tdb.fi Git - builder.git/blob - source/binary.h
Un-abbreviate some function and variable names
[builder.git] / source / binary.h
1 #ifndef BINARY_H_
2 #define BINARY_H_
3
4 #include "filetarget.h"
5
6 class Component;
7 class ObjectFile;
8
9 /**
10 Produces a binary file, which may be either a standalone executable or a shared
11 library.
12 */
13 class Binary: public FileTarget
14 {
15 protected:
16         Binary(Builder &, const Msp::FS::Path &);
17         Binary(Builder &, const Component &, const std::string &, const std::list<ObjectFile *> &);
18
19 public:
20         virtual void find_dependencies();
21 };
22
23 #endif