X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilder.h;h=44bf878b4efa1e1b24d4793b669a1b08e5b342dc;hb=0c83b922e56976a30506d9f8d43c9dcd38d573b5;hp=18f4b52c56dfa744f085d4e3e2eaeb2e486856b4;hpb=43bd25ffcb0b4f7882773f4676b209a99cb73c04;p=builder.git diff --git a/source/builder.h b/source/builder.h index 18f4b52..44bf878 100644 --- a/source/builder.h +++ b/source/builder.h @@ -52,6 +52,10 @@ private: void option(const std::string &, const std::string &); }; +public: + typedef std::map TargetMap; + +private: typedef std::list PackageList; typedef std::map PackageMap; typedef std::map ProfileTemplateMap; @@ -67,6 +71,7 @@ private: bool no_externals; TargetMap targets; + TargetMap targets_by_path; TargetList new_tgts; TargetMap includes; TargetMap libraries; @@ -117,6 +122,8 @@ public: /** Looks up a target by name. Returns 0 if no such target exists. */ Target *get_target(const std::string &) const; + FileTarget *get_target_by_path(const Msp::FS::Path &) const; + const TargetMap &get_targets() const { return targets; } /** Tries to locate a header based on location of including file and include @@ -141,8 +148,8 @@ public: /** Adds a target to both the target map and the new target queue. Called from Target constructor. */ - void add_target(FileTarget *); - void add_target(VirtualTarget *); + void add_target(Target *); + void register_path(const Msp::FS::Path &, FileTarget *); void problem(const std::string &, const std::string &);