diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-18 16:07:56 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-02 21:12:56 (GMT) |
commit | fdcefe3c42fefdfcd27e6cf7b679f39cb99db4b9 (patch) | |
tree | 63c32eb63120ec2f6394112caa500ae9e3acad6b /Source/cmGeneratorTarget.h | |
parent | c355d10865ba0dbaef06d0eafe678627c875a5f5 (diff) | |
download | CMake-fdcefe3c42fefdfcd27e6cf7b679f39cb99db4b9.zip CMake-fdcefe3c42fefdfcd27e6cf7b679f39cb99db4b9.tar.gz CMake-fdcefe3c42fefdfcd27e6cf7b679f39cb99db4b9.tar.bz2 |
cmGeneratorTarget: Compute consumed object libraries on demand.
Remove up-front object library computation from cmGlobalGenerator.
Adjust tests for message coming from the generator expression
evaluation.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 53e27c5..cb59783 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -84,8 +84,6 @@ public: */ void TraceDependencies(); - void LookupObjectLibraries(); - /** Get sources that must be built before the given source. */ std::vector<cmSourceFile*> const* GetSourceDepends(cmSourceFile const* sf) const; @@ -127,7 +125,6 @@ private: std::map<cmSourceFile const*, std::string> Objects; std::set<cmSourceFile const*> ExplicitObjectName; - std::vector<cmTarget*> ObjectLibraries; mutable std::map<std::string, std::vector<std::string> > SystemIncludesCache; void ConstructSourceFileFlags() const; |