[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1514-gfba9a5a
Stephen Kelly
steveire at gmail.com
Wed Jan 9 02:35:20 EST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via fba9a5a6a2243583fa9477bd61177c226eea1fdd (commit)
via aca4916b2c124c6ec198c1f88329379458c93727 (commit)
from 50e4e0f12c22dc88dba550ba96a46c1ca1d634f0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=fba9a5a6a2243583fa9477bd61177c226eea1fdd
commit fba9a5a6a2243583fa9477bd61177c226eea1fdd
Merge: 50e4e0f aca4916
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Jan 9 02:35:17 2013 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jan 9 02:35:17 2013 -0500
Merge topic 'target-includes-defines-commands' into next
aca4916 Don't end paths with a slash.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=aca4916b2c124c6ec198c1f88329379458c93727
commit aca4916b2c124c6ec198c1f88329379458c93727
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Jan 9 08:32:43 2013 +0100
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Wed Jan 9 08:32:43 2013 +0100
Don't end paths with a slash.
Perhaps this will fix the test with Visual Studio.
diff --git a/Tests/CMakeCommands/target_include_directories/CMakeLists.txt b/Tests/CMakeCommands/target_include_directories/CMakeLists.txt
index 60bbf59..a0f2ee0 100644
--- a/Tests/CMakeCommands/target_include_directories/CMakeLists.txt
+++ b/Tests/CMakeCommands/target_include_directories/CMakeLists.txt
@@ -24,16 +24,16 @@ add_executable(target_include_directories
"${CMAKE_CURRENT_SOURCE_DIR}/main.cpp"
)
target_include_directories(target_include_directories
- PRIVATE "${CMAKE_CURRENT_BINARY_DIR}/privateinclude/"
- PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/publicinclude/"
- INTERFACE "${CMAKE_CURRENT_BINARY_DIR}/interfaceinclude/"
+ PRIVATE "${CMAKE_CURRENT_BINARY_DIR}/privateinclude"
+ PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/publicinclude"
+ INTERFACE "${CMAKE_CURRENT_BINARY_DIR}/interfaceinclude"
)
target_include_directories(target_include_directories
- PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/poison/"
+ PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/poison"
)
target_include_directories(target_include_directories
- BEFORE PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/cure/"
+ BEFORE PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/cure"
)
add_library(importedlib UNKNOWN IMPORTED)
-----------------------------------------------------------------------
Summary of changes:
.../target_include_directories/CMakeLists.txt | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list