]> git.tdb.fi Git - builder.git/blob - source/importlibrary.h
86d26f45d201981f52f82f2c4d22bb245fefa71f
[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