]> git.tdb.fi Git - builder.git/blobdiff - source/systemlibrary.h
Add comments
[builder.git] / source / systemlibrary.h
index 97512702dbbd21cc166694636e21a82519052785..babd494f97a5c5f53b6336619c357f256fa66719 100644 (file)
@@ -3,12 +3,14 @@
 
 #include "target.h"
 
+/**
+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"; }
-       void find_depends() { }
        Action *build() { return 0; }
 };