X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarget.h;h=8a394f3717625787dbc1c123b7bd4f61319da8da;hb=1a75d7e01d0704f83633f696a312744de272b4c4;hp=790a7e33626670ecc6ef546e4bb4e7caaab3191a;hpb=ad88e1ba08cf798e5f87796021c947cf500a02e1;p=builder.git diff --git a/source/target.h b/source/target.h index 790a7e3..8a394f3 100644 --- a/source/target.h +++ b/source/target.h @@ -14,8 +14,6 @@ class SourcePackage; class Task; class Tool; -class Target; - /** Targets make up the build graph. This class is a base for all target types and handles many common tasks. See also FileTarget and VirtualTarget. @@ -47,7 +45,6 @@ protected: const Tool *tool; State state; std::string rebuild_reason; - std::string install_location; Dependencies depends; @@ -89,8 +86,6 @@ public: /** Forces rebuild of the target. */ void force_rebuild(); - bool is_installable() const { return !install_location.empty(); } - const std::string &get_install_location() const { return install_location; } void add_depend(Target *); const Dependencies &get_depends() const { return depends; }