]> git.tdb.fi Git - builder.git/blobdiff - source/systemlibrary.h
Refactor package configuration
[builder.git] / source / systemlibrary.h
index babd494f97a5c5f53b6336619c357f256fa66719..edd50a25099e98fd88dad77546cc3f3a416e10af 100644 (file)
@@ -9,9 +9,12 @@ A library that doesn't belong to any known package.
 class SystemLibrary: public Target
 {
 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 std::string &);
+       const char        *get_type() const    { return "SystemLibrary"; }
+       const std::string &get_libname() const { return libname; }
+       Action            *build()             { return 0; }
+private:
+       std::string libname;
 };
 
 #endif