diff options
author | Brad King <brad.king@kitware.com> | 2013-11-05 17:30:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-05 17:30:20 (GMT) |
commit | 4abdee6ba3a5234f6b5fb9d6441ef09c99d79ca7 (patch) | |
tree | abd493e05d83d47caab94b8bedb433bae693f6ec | |
parent | 3063011352ebf2311ae3a9407066f32d6403b26b (diff) | |
download | CMake-4abdee6ba3a5234f6b5fb9d6441ef09c99d79ca7.zip CMake-4abdee6ba3a5234f6b5fb9d6441ef09c99d79ca7.tar.gz CMake-4abdee6ba3a5234f6b5fb9d6441ef09c99d79ca7.tar.bz2 |
CMake 2.8.12.1v2.8.12.1
-rw-r--r-- | ChangeLog.manual | 26 | ||||
-rw-r--r-- | Source/CMakeVersion.cmake | 2 |
2 files changed, 27 insertions, 1 deletions
diff --git a/ChangeLog.manual b/ChangeLog.manual index 0e84fb6..5d2dc8b 100644 --- a/ChangeLog.manual +++ b/ChangeLog.manual @@ -1,3 +1,29 @@ +Changes in CMake 2.8.12.1 (since 2.8.12) +---------------------------------------- +Brad King (9): + MSVC: Add /FS flag for cl >= 18 to allow parallel compilation (#14492) + Genex: Reject $<TARGET_FILE:...> for object libraries (#14532) + Check for OBJECT_LIBRARY source files at start of generation + CMP0022: Plain target_link_libraries must populate link interface + Do not export INTERFACE_LINK_LIBRARIES from non-linkable targets + CMP0022: Warn about a given target at most once + Fix summary documentation of INTERFACE_LINK_LIBRARIES + file(GENERATE): Clear internal records between configures + cmake: Validate -E cmake_automoc argument count (#14545) + +Modestas Vainius (1): + Fix spelling in INTERFACE_LINK_LIBRARIES documentation (#14542) + +Stephen Kelly (5): + CMP0022: Output link interface mismatch for static library warning + Don't add invalid content to static lib INTERFACE_LINK_LIBRARIES. + CMP0022: Add unit test for null pointer check and message. + CMP0022: Add test for target_link_libraries plain signature + Automoc: Add directory-level COMPILE_DEFINITIONS to command line (#14535) + +Vladislav Vinogradov (1): + FindCUDA: Fix NPP library search for CUDA 5.5 + Changes in CMake 2.8.12 (since 2.8.12-rc4) ------------------------------------------ Brad King (4): diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 63751fb..5027370 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -2,5 +2,5 @@ set(CMake_VERSION_MAJOR 2) set(CMake_VERSION_MINOR 8) set(CMake_VERSION_PATCH 12) -set(CMake_VERSION_TWEAK 0) +set(CMake_VERSION_TWEAK 1) #set(CMake_VERSION_RC 0) |