]> git.tdb.fi Git - builder.git/blobdiff - source/systemlibrary.h
Big rewrite for a more tool-centric approach
[builder.git] / source / systemlibrary.h
index bd554296b8b8cda181fc480dad907342306b2850..ee647ffa6ce128dd797916ef471e43b7ceb15664 100644 (file)
@@ -1,14 +1,19 @@
 #ifndef SYSTEMLIBRARY_H_
 #define SYSTEMLIBRARY_H_
 
-#include "target.h"
+#include "library.h"
 
-class SystemLibrary: public Target
+/**
+A library that doesn't belong to any known package.
+*/
+class SystemLibrary: public Library
 {
 public:
-       SystemLibrary(Builder &b, const std::string &n): Target(b,0,n) { }
-       const char *get_type() const { return "SystemLibrary"; }
-       Action *build() { return 0; }
+       SystemLibrary(Builder &, const Msp::FS::Path &);
+
+       virtual const char *get_type() const { return "SystemLibrary"; }
+private:
+       static std::string extract_libname(const Msp::FS::Path &);
 };
 
 #endif