]> git.tdb.fi Git - builder.git/blob - source/systemlibrary.h
Big rewrite for a more tool-centric approach
[builder.git] / source / systemlibrary.h
1 #ifndef SYSTEMLIBRARY_H_
2 #define SYSTEMLIBRARY_H_
3
4 #include "library.h"
5
6 /**
7 A library that doesn't belong to any known package.
8 */
9 class SystemLibrary: public Library
10 {
11 public:
12         SystemLibrary(Builder &, const Msp::FS::Path &);
13
14         virtual const char *get_type() const { return "SystemLibrary"; }
15 private:
16         static std::string extract_libname(const Msp::FS::Path &);
17 };
18
19 #endif