summaryrefslogtreecommitdiff
path: root/Source/cmLinkDirectoriesCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-11-24 11:16:38 -0500
committerBrad King <brad.king@kitware.com>2009-11-24 11:16:38 -0500
commit02db43239b7e2fd1f6dede9fb7237470ca51b567 (patch)
treeb8d176017c422f81c6122c40c24e6592d3375548 /Source/cmLinkDirectoriesCommand.h
parente1548142fbb582d02f2386ff8085e6372f7f3ffd (diff)
downloadcmake-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.h2
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);
};