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.h | |
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.h')
-rw-r--r-- | Source/cmPolicies.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index 4d1c3fc..aaa3ac0 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -50,6 +50,7 @@ public: CMP0012, // Recognize numbers and boolean constants in if() CMP0013, // Duplicate binary directories not allowed CMP0014, // Input directories must have CMakeLists.txt + CMP0015, // link_directories() treats paths relative to source dir // Always the last entry. Useful mostly to avoid adding a comma // the last policy when adding a new one. |