From 8df3623bee0b1bdf34c2195c1b90c07cfb761633 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 9 Jun 2022 18:48:21 +0200 Subject: [PATCH] Changelog: clarify some cmake-related entries as being about cmake Signed-off-by: Gilles Peskine --- ChangeLog.d/cmake_add_subdirectory_support.txt | 6 +++--- ChangeLog.d/cmake_fix_dll_install.txt | 4 ++-- .../fix-windows-cmake-build-with-shared-libraries.txt | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ChangeLog.d/cmake_add_subdirectory_support.txt b/ChangeLog.d/cmake_add_subdirectory_support.txt index afcc4b6c4..f14f3f866 100644 --- a/ChangeLog.d/cmake_add_subdirectory_support.txt +++ b/ChangeLog.d/cmake_add_subdirectory_support.txt @@ -1,4 +1,4 @@ Changes - * Add aliases for libraries so that the normal MbedTLS::* targets - work when MbedTLS is built as a subdirectory. Allows use of - CMake's FetchContent, as requested in #5688. + * In CMake builds, add aliases for libraries so that the normal MbedTLS::* + targets work when MbedTLS is built as a subdirectory. This allows the + use of FetchContent, as requested in #5688. diff --git a/ChangeLog.d/cmake_fix_dll_install.txt b/ChangeLog.d/cmake_fix_dll_install.txt index df51c650b..7f407c4cc 100644 --- a/ChangeLog.d/cmake_fix_dll_install.txt +++ b/ChangeLog.d/cmake_fix_dll_install.txt @@ -1,3 +1,3 @@ Changes - * cmake: Fix runtime library install location in mingw - This install DLLs in bin directory instead of lib. + * Fix runtime library install location when building with CMake and MinGW. + DLLs are now installed in the bin directory instead of lib. diff --git a/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt b/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt index 687864523..a6540a1aa 100644 --- a/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt +++ b/ChangeLog.d/fix-windows-cmake-build-with-shared-libraries.txt @@ -1,3 +1,3 @@ Bugfix - * Fix compilation on Windows when building shared library, by setting - library search path to CMAKE_CURRENT_BINARY_DIR. + * Fix the library search path when building a shared library with CMake + on Windows.