diff options
author | Brad King <brad.king@kitware.com> | 2013-03-19 20:40:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-03-19 20:44:17 (GMT) |
commit | fc43477de01e4d95a2c68a401afa2fc7f5f4d255 (patch) | |
tree | f94e9d159d1583b6493382e0fe220912f866ef8c /Tests/CMakeCommands | |
parent | 017478570eb47241141fa06e8ca2688e4a2b1f87 (diff) | |
download | CMake-fc43477de01e4d95a2c68a401afa2fc7f5f4d255.zip CMake-fc43477de01e4d95a2c68a401afa2fc7f5f4d255.tar.gz CMake-fc43477de01e4d95a2c68a401afa2fc7f5f4d255.tar.bz2 |
Rename variable for including current directory in interfaces
Rename the variable added by commit 9ce1b9ef (Add
CMAKE_BUILD_INTERFACE_INCLUDES build-variable, 2012-11-25) to
CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE to be more consistent with the
existing CMAKE_INCLUDE_CURRENT_DIR variable.
Suggested-by: Alex Neundorf <neundorf@kde.org>
Diffstat (limited to 'Tests/CMakeCommands')
-rw-r--r-- | Tests/CMakeCommands/target_link_libraries/subdir/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeCommands/target_link_libraries/subdir/CMakeLists.txt b/Tests/CMakeCommands/target_link_libraries/subdir/CMakeLists.txt index 61a1a59..9d7fa6c 100644 --- a/Tests/CMakeCommands/target_link_libraries/subdir/CMakeLists.txt +++ b/Tests/CMakeCommands/target_link_libraries/subdir/CMakeLists.txt @@ -1,5 +1,5 @@ -set(CMAKE_BUILD_INTERFACE_INCLUDES ON) +set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON) add_library(subdirlib SHARED subdirlib.cpp) generate_export_header(subdirlib) |