diff options
author | Brad King <brad.king@kitware.com> | 2009-11-24 16:16:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-11-24 16:16:38 (GMT) |
commit | 02db43239b7e2fd1f6dede9fb7237470ca51b567 (patch) | |
tree | b8d176017c422f81c6122c40c24e6592d3375548 /Source/cmPolicies.cxx | |
parent | e1548142fbb582d02f2386ff8085e6372f7f3ffd (diff) | |
download | CMake-02db43239b7e2fd1f6dede9fb7237470ca51b567.zip CMake-02db43239b7e2fd1f6dede9fb7237470ca51b567.tar.gz CMake-02db43239b7e2fd1f6dede9fb7237470ca51b567.tar.bz2 |
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/cmPolicies.cxx')
-rw-r--r-- | Source/cmPolicies.cxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index 6b35b5b..2d41d40 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -406,6 +406,21 @@ cmPolicies::cmPolicies() "The OLD behavior for this policy is to silently ignore the problem. " "The NEW behavior for this policy is to report an error.", 2,8,0, cmPolicies::WARN); + + this->DefinePolicy( + CMP0015, "CMP0015", + "link_directories() treats paths relative to the source dir.", + "In CMake 2.6.4 and lower the link_directories() command passed relative " + "paths unchanged to the linker. " + "In CMake 2.8.1 and above the link_directories() command prefers to " + "interpret relative paths with respect to CMAKE_CURRENT_SOURCE_DIR, " + "which is consistent with include_directories() and other commands. " + "The OLD behavior for this policy is to use relative paths verbatim in " + "the linker command. " + "The NEW behavior for this policy is to convert relative paths to " + "absolute paths by appending the relative path to " + "CMAKE_CURRENT_SOURCE_DIR.", + 2,8,1, cmPolicies::WARN); } cmPolicies::~cmPolicies() |