]> git.tdb.fi Git - builder.git/blob - source/exportdefinitions.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / exportdefinitions.h
1 #ifndef EXPORTDEFINITIONS_H_
2 #define EXPORTDEFINITIONS_H_
3
4 #include "filetarget.h"
5
6 class ObjectFile;
7
8 /**
9 An export definition file for a shared library.  Only used on Windows.
10 */
11 class ExportDefinitions: public FileTarget
12 {
13 public:
14         ExportDefinitions(Builder &, const Component &, const std::list<ObjectFile *> &);
15 private:
16         static Msp::FS::Path generate_target_path(const Component &);
17
18 public:
19         virtual const char *get_type() const { return "ExportDefinitions"; }
20 };
21
22 #endif