diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-24 13:16:41 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-24 13:16:41 -0500 |
commit | ff812580ebec0b7ff908feeb256ad263bfc0c41a (patch) | |
tree | 0d99dfaa7a1790bd9435481d0ff8fdbe215a99c9 /Source/cmLocalGenerator.h | |
parent | 9c4997bf06361b05ddad6d23388086b012d381fb (diff) | |
download | cmake-ff812580ebec0b7ff908feeb256ad263bfc0c41a.tar.gz |
ENH: add a new library path ordering algorithm to make sure -L paths will pick the correct libraries if possible
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 8dea2d5fd5..88dba506e1 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -103,7 +103,9 @@ public: ///! for existing files convert to output path and short path if spaces std::string ConvertToOutputForExisting(const char* p); - + void DetermineLibraryPathOrder(const cmTarget& target, + std::vector<std::string>& linkPaths, + std::vector<std::string>& linkLibs); protected: /** Construct a script from the given list of command lines. */ std::string ConstructScript(const cmCustomCommandLines& commandLines, |