]> git.tdb.fi Git - builder.git/blob - source/importlibrary.h
Give import libraries their own class
[builder.git] / source / importlibrary.h
1 #ifndef IMPORTLIBRARY_H_
2 #define IMPORTLIBRARY_H_
3
4 #include "filetarget.h"
5
6 /**
7 A special case of static library which pulls in a shared library.  Used on
8 platforms with no true dynamic linking support.
9 */
10 class ImportLibrary: public FileTarget
11 {
12 public:
13         ImportLibrary(Builder &, const Msp::FS::Path &);
14
15         virtual const char *get_type() const { return "ImportLibrary"; }
16 };
17
18 #endif