diff options
author | Brad King <brad.king@kitware.com> | 2009-11-24 11:16:38 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-11-24 11:16:38 -0500 |
commit | 02db43239b7e2fd1f6dede9fb7237470ca51b567 (patch) | |
tree | b8d176017c422f81c6122c40c24e6592d3375548 /Source/cmLinkDirectoriesCommand.h | |
parent | e1548142fbb582d02f2386ff8085e6372f7f3ffd (diff) | |
download | cmake-02db43239b7e2fd1f6dede9fb7237470ca51b567.tar.gz |
Teach link_directories to recognize relative paths
We create CMake Policy CMP0015 to make link_directories() treat relative
paths with respect to the source tree while retaining compatibility.
This makes it consistent with include_directories() and other commands.
Changes based on patch from Alex. See issue #9697.
Diffstat (limited to 'Source/cmLinkDirectoriesCommand.h')
-rw-r--r-- | Source/cmLinkDirectoriesCommand.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLinkDirectoriesCommand.h b/Source/cmLinkDirectoriesCommand.h index 73673c4407..e5ff4f0f32 100644 --- a/Source/cmLinkDirectoriesCommand.h +++ b/Source/cmLinkDirectoriesCommand.h @@ -70,6 +70,8 @@ public: } cmTypeMacro(cmLinkDirectoriesCommand, cmCommand); +private: + void AddLinkDir(std::string const& dir); }; |