diff options
author | Brad King <brad.king@kitware.com> | 2024-06-04 13:18:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-06-05 13:56:04 (GMT) |
commit | d5402283d8e5c8babd6a103ba8aa80d64afb56e1 (patch) | |
tree | 44735fc704534f6beeecb9a5f25b1afe312a6e1d /Help | |
parent | a67bb7f4883b081c351e1e89a2f8cc867960a261 (diff) | |
download | CMake-d5402283d8e5c8babd6a103ba8aa80d64afb56e1.zip CMake-d5402283d8e5c8babd6a103ba8aa80d64afb56e1.tar.gz CMake-d5402283d8e5c8babd6a103ba8aa80d64afb56e1.tar.bz2 |
Help: Consolidate 3.30 release notes
Run the `Utilities/Release/consolidate-relnotes.bash` script to move
notes from `Help/release/dev/*` into `Help/release/3.30.rst`.
Diffstat (limited to 'Help')
37 files changed, 200 insertions, 261 deletions
diff --git a/Help/release/3.30.rst b/Help/release/3.30.rst new file mode 100644 index 0000000..6225f76 --- /dev/null +++ b/Help/release/3.30.rst @@ -0,0 +1,199 @@ +CMake 3.30 Release Notes +************************ + +.. only:: html + + .. contents:: + +Changes made since CMake 3.29 include the following. + +* On platforms that do not support shared libraries, the :command:`add_library` + command now rejects creation of shared libraries instead of automatically + converting them to static libraries. See policy :policy:`CMP0164`. + +* The :cpack_gen:`CPack Inno Setup Generator` is now available + on non-Windows hosts. + +* The :cpack_gen:`CPack NuGet Generator` can now generate dependency groups + for framework-specific dependencies. The :variable:`CPACK_NUGET_PACKAGE_TFMS` + was added to specify a list of framework TFMs for which groups should be + generated. + +* The :cpack_gen:`CPack WIX Generator` gained support for WiX Toolset v4. + See the :variable:`CPACK_WIX_VERSION` variable. + +* The :command:`file(DOWNLOAD)` and :command:`file(UPLOAD)` commands + gained a ``TLS_VERSION <min>`` option to specify the minimum TLS + version for connections to ``https://`` URLs. + +* The :variable:`CMAKE_TLS_VERSION` variable and :envvar:`CMAKE_TLS_VERSION` + environment variable were added to specify a default minimum TLS version + for connections to ``https://`` URLs by the :command:`file(DOWNLOAD)` + and :command:`file(UPLOAD)` commands. + +* The :envvar:`CMAKE_TLS_VERIFY` environment variable was added as a fallback + to the existing :variable:`CMAKE_TLS_VERIFY` variable. It specifies + whether to verify the server certificate for ``https://`` URLs by default. + +* The :module:`ExternalProject` module's :command:`ExternalProject_Add` + command gained a ``TLS_VERSION <min>`` option, and support for the + :variable:`CMAKE_TLS_VERSION` variable and :envvar:`CMAKE_TLS_VERSION` + environment variable, to specify the minimum TLS version for connections + to ``https://`` URLs. + +* The :command:`ctest_submit` command and :option:`ctest -T Submit <ctest -T>` + step gained ``TLSVersion`` and ``TLSVerify`` options to control negotiation + with ``https://`` URLs. See the :variable:`CTEST_TLS_VERSION` and + :variable:`CTEST_TLS_VERIFY` variables. + +* The :genex:`TARGET_PROPERTY` generator expression learned to evaluate + :ref:`custom transitive properties <Custom Transitive Properties>` + defined by new :prop_tgt:`TRANSITIVE_COMPILE_PROPERTIES` and + :prop_tgt:`TRANSITIVE_LINK_PROPERTIES` target properties. + +* The :manual:`Compile Features <cmake-compile-features(7)>` functionality + now implements support for the ``cxx_std_26`` and ``cuda_std_26`` + meta-features to indicate that the compiler mode must be at least C++26. + These meta-features were first documented by CMake 3.25, but were not fully + implemented. + +* The :prop_tgt:`CXX_MODULE_STD` property may be used to control + ``import std;`` support for targets. + +* The :prop_gbl:`PROPAGATE_TOP_LEVEL_INCLUDES_TO_TRY_COMPILE` global property + can be used to propagate :variable:`CMAKE_PROJECT_TOP_LEVEL_INCLUDES` into + :command:`try_compile` calls that use the + :ref:`whole-project signature <Try Compiling Whole Projects>`. + This is primarily intended as a way for dependency providers to be enabled + in such :command:`try_compile` calls. + +* Calling :command:`FetchContent_Populate` with just the name of a + dependency is now deprecated. Projects should call + :command:`FetchContent_MakeAvailable` instead. See policy :policy:`CMP0169`. + Calling :command:`FetchContent_Populate` with full population details + rather than just a dependency name remains fully supported. + +* The :command:`enable_language` command now fails with an error + if it is called before the first :command:`project` call. + See policy :policy:`CMP0165`. + +* When :variable:`FETCHCONTENT_FULLY_DISCONNECTED` is set to true, + :command:`FetchContent_MakeAvailable` and the single-argument form of + :command:`FetchContent_Populate` require that the dependency's source + directory has already been populated. CMake 3.29 and earlier did not + check this requirement, but it is now enforced, subject to policy + :policy:`CMP0170`. + +* :module:`FetchContent` now prefers to populate content directly rather + than using a separate sub-build. This may significantly improve configure + times on some systems (Windows especially, but also on macOS when using + the Xcode generator). Policy :policy:`CMP0168` provides backward + compatibility for those projects that still rely on using a sub-build for + content population. + +* The :manual:`cmake-file-api(7)` "cmakeFiles" version 1 object's ``version`` + field has been updated to 1.1. + +* The :manual:`cmake-file-api(7)` "cmakeFiles" version 1 object gained a + ``globsDependent`` field to report :command:`file(GLOB)` calls using + ``CONFIGURE_DEPENDS``. + +* The :module:`FindBacktrace` module now provides an imported target. + +* The :module:`FindBLAS` and :module:`FindLAPACK` modules gained + support for ``libblastrampoline``. + +* The :module:`FindBoost` module has been removed by policy :policy:`CMP0167`. + Port projects to upstream Boost's ``BoostConfig.cmake`` package + configuration file, for which ``find_package(Boost)`` now searches. + +* The :module:`FindCUDAToolkit` module now provides a target for + ``libnvfatbin`` and ``libnvfatbin_static``, if found. + +* The :module:`FindCUDAToolkit` module now searches the + :variable:`CMAKE_CUDA_COMPILER <CMAKE_<LANG>_COMPILER>` and + the environment variable :envvar:`CUDACXX` even when the CUDA + language isn't enabled. + +* The :module:`FindOpenMP` module gained a ``OpenMP_RUNTIME_MSVC`` + option to control the OpenMP runtime used with MSVC. + +* The :module:`FindPython`, :module:`FindPython2` and :module:`FindPython3` + modules offer, on ``Windows`` platform, a better support of the ``Python`` + debug version: + + * new variables: + + * ``Python_EXECUTABLE_DEBUG`` + * ``Python_INTERPRETER`` + * ``Python_DEBUG_POSTFIX`` + + * new targets: + + * ``Python::InterpreterDebug`` + * ``Python::InterpreterMultiConfig`` + + And the ``python_add_library()`` command manage the :prop_tgt:`DEBUG_POSTFIX` + target property based on the value of the ``Python_DEBUG_POSTFIX`` variable. + +* The :module:`FindPython`, :module:`FindPython3` modules gained the support + of the free threaded python version. + +* Generator expressions ``$<<LANG>_COMPILER_FRONTEND_VARIANT:...>`` were added that allow + access to the value of the associated :variable:`CMAKE_<LANG>_COMPILER_FRONTEND_VARIANT` + variables. + +* Link features, as used with the :genex:`LINK_LIBRARY` generator expression, + gained the ability to have properties that describe their behavior by + specifying the :variable:`CMAKE_LINK_LIBRARY_<FEATURE>_PROPERTIES` or + :variable:`CMAKE_<LANG>_LINK_LIBRARY_<FEATURE>_PROPERTIES` variables. + +* The :genex:`TARGET_PROPERTY` generator expression now evaluates target + properties :prop_tgt:`INTERFACE_LINK_OPTIONS`, + :prop_tgt:`INTERFACE_LINK_DIRECTORIES`, and + :prop_tgt:`INTERFACE_LINK_DEPENDS` correctly by following private + dependencies of static libraries. See policy :policy:`CMP0166`. + +* The :genex:`$<QUOTE>` generator expression was added to evaluate to ``"``. + +* The :variable:`CMAKE_<LANG>_STANDARD_LATEST` variable was added to + describe the latest supported standard of language ``<LANG>``. + +* :manual:`cmake-presets(7)` files now support schema version ``9``: + + * ``include`` fields now expand all macros except ``$env{}`` and + preset-specific macros. + +* The durations printed after "Configuring done" and "Generating done" + messages now reflect time spent in generator-specific steps, and + in a code model evaluation step at the beginning of generation that + was not previously captured. Printed durations may appear longer + than in previous versions of CMake. + +* The :prop_sf:`GENERATED` source file property is now visible in all + directories. See policy :policy:`CMP0163`. Policy :policy:`CMP0118`'s + documentation has been revised to describe its actual effects. + +* The precompiled Windows ``.msi`` installers provided on + `cmake.org <https://cmake.org/download/>`_, when performing a fresh + installation, now modify the system-wide ``PATH`` by default. + When replacing an existing installation, the ``PATH`` modification + preference is preserved by default. + +* The official ``.zip`` source archive provided on + `cmake.org <https://cmake.org/download/>`_ now uses LF newlines, + instead of CRLF newlines, for consistency with modern conventions. + +* The :generator:`Visual Studio 9 2008` generator has been removed. + +* A :prop_tgt:`VS_FILTER_PROPS` target property was added to tell + :ref:`Visual Studio Generators` for VS 2010 and above to use a + custom MSBuild filter ``.props`` file. + +* :ref:`Visual Studio Generators` now add ``UseDebugLibraries`` indicators to + ``.vcxproj`` files to denote which configurations are debug configurations. + See policy :policy:`CMP0162`. + +* The :variable:`CMAKE_VS_USE_DEBUG_LIBRARIES` variable and corresponding + :prop_tgt:`VS_USE_DEBUG_LIBRARIES` target property were added to explicitly + control ``UseDebugLibraries`` indicators in ``.vcxproj`` files. diff --git a/Help/release/dev/CXX_MODULE_STD-property.rst b/Help/release/dev/CXX_MODULE_STD-property.rst deleted file mode 100644 index 50febf4..0000000 --- a/Help/release/dev/CXX_MODULE_STD-property.rst +++ /dev/null @@ -1,5 +0,0 @@ -CXX_MODULE_STD-property ------------------------ - -* The :prop_tgt:`CXX_MODULE_STD` property may be used to control - ``import std;`` support for targets. diff --git a/Help/release/dev/FindBLAS-LAPACK-libblastrampoline.rst b/Help/release/dev/FindBLAS-LAPACK-libblastrampoline.rst deleted file mode 100644 index d1f2148..0000000 --- a/Help/release/dev/FindBLAS-LAPACK-libblastrampoline.rst +++ /dev/null @@ -1,5 +0,0 @@ -FindBLAS-LAPACK-libblastrampoline ---------------------------------- - -* The :module:`FindBLAS` and :module:`FindLAPACK` modules gained - support for ``libblastrampoline``. diff --git a/Help/release/dev/FindBacktrace-imported-library.rst b/Help/release/dev/FindBacktrace-imported-library.rst deleted file mode 100644 index ffb8d66..0000000 --- a/Help/release/dev/FindBacktrace-imported-library.rst +++ /dev/null @@ -1,4 +0,0 @@ -FindBacktrace-imported-library ------------------------------- - -* The :module:`FindBacktrace` module now provides an imported target. diff --git a/Help/release/dev/FindBoost-remove.rst b/Help/release/dev/FindBoost-remove.rst deleted file mode 100644 index 5abf18f..0000000 --- a/Help/release/dev/FindBoost-remove.rst +++ /dev/null @@ -1,6 +0,0 @@ -FindBoost-remove ------------------ - -* The :module:`FindBoost` module has been removed by policy :policy:`CMP0167`. - Port projects to upstream Boost's ``BoostConfig.cmake`` package - configuration file, for which ``find_package(Boost)`` now searches. diff --git a/Help/release/dev/FindCUDAToolkit-nvfatbin.rst b/Help/release/dev/FindCUDAToolkit-nvfatbin.rst deleted file mode 100644 index f8bb624..0000000 --- a/Help/release/dev/FindCUDAToolkit-nvfatbin.rst +++ /dev/null @@ -1,5 +0,0 @@ -FindCUDAToolkit-nvfatbin ------------------------- - -* The :module:`FindCUDAToolkit` module now provides a target for - ``libnvfatbin`` and ``libnvfatbin_static``, if found. diff --git a/Help/release/dev/FindCUDAToolkit-search-paths.rst b/Help/release/dev/FindCUDAToolkit-search-paths.rst deleted file mode 100644 index 3229e5c..0000000 --- a/Help/release/dev/FindCUDAToolkit-search-paths.rst +++ /dev/null @@ -1,7 +0,0 @@ -FindCUDAToolkit-search-paths ----------------------------- - -* The :module:`FindCUDAToolkit` module now searches the - :variable:`CMAKE_CUDA_COMPILER <CMAKE_<LANG>_COMPILER>` and - the environment variable :envvar:`CUDACXX` even when the CUDA - language isn't enabled. diff --git a/Help/release/dev/FindOpenMP-runtime-msvc.rst b/Help/release/dev/FindOpenMP-runtime-msvc.rst deleted file mode 100644 index 76df237..0000000 --- a/Help/release/dev/FindOpenMP-runtime-msvc.rst +++ /dev/null @@ -1,5 +0,0 @@ -FindOpenMP-runtime-msvc ------------------------ - -* The :module:`FindOpenMP` module gained a ``OpenMP_RUNTIME_MSVC`` - option to control the OpenMP runtime used with MSVC. diff --git a/Help/release/dev/FindPython-DEBUG.rst b/Help/release/dev/FindPython-DEBUG.rst deleted file mode 100644 index 2e75e72..0000000 --- a/Help/release/dev/FindPython-DEBUG.rst +++ /dev/null @@ -1,20 +0,0 @@ -FindPython-DEBUG ----------------- - -* The :module:`FindPython`, :module:`FindPython2` and :module:`FindPython3` - modules offer, on ``Windows`` platform, a better support of the ``Python`` - debug version: - - * new variables: - - * ``Python_EXECUTABLE_DEBUG`` - * ``Python_INTERPRETER`` - * ``Python_DEBUG_POSTFIX`` - - * new targets: - - * ``Python::InterpreterDebug`` - * ``Python::InterpreterMultiConfig`` - - And the ``python_add_library()`` command manage the :prop_tgt:`DEBUG_POSTFIX` - target property based on the value of the ``Python_DEBUG_POSTFIX`` variable. diff --git a/Help/release/dev/FindPython-free_threaded_Python.rst b/Help/release/dev/FindPython-free_threaded_Python.rst deleted file mode 100644 index 56c143a7..0000000 --- a/Help/release/dev/FindPython-free_threaded_Python.rst +++ /dev/null @@ -1,5 +0,0 @@ -FindPython-free_thread_Python ------------------------------ - -* The :module:`FindPython`, :module:`FindPython3` modules gained the support - of the free threaded python version. diff --git a/Help/release/dev/GenEx-LINK_LIBRARY-feature-properties.rst b/Help/release/dev/GenEx-LINK_LIBRARY-feature-properties.rst deleted file mode 100644 index a96eab9..0000000 --- a/Help/release/dev/GenEx-LINK_LIBRARY-feature-properties.rst +++ /dev/null @@ -1,7 +0,0 @@ -GenEx-LINK_LIBRARY-feature-properties -------------------------------------- - -* Link features, as used with the :genex:`LINK_LIBRARY` generator expression, - gained the ability to have properties that describe their behavior by - specifying the :variable:`CMAKE_LINK_LIBRARY_<FEATURE>_PROPERTIES` or - :variable:`CMAKE_<LANG>_LINK_LIBRARY_<FEATURE>_PROPERTIES` variables. diff --git a/Help/release/dev/add_library-no-static-fallback.rst b/Help/release/dev/add_library-no-static-fallback.rst deleted file mode 100644 index 72de12b..0000000 --- a/Help/release/dev/add_library-no-static-fallback.rst +++ /dev/null @@ -1,6 +0,0 @@ -add_library-no-static-fallback ------------------------------- - -* On platforms that do not support shared libraries, the :command:`add_library` - command now rejects creation of shared libraries instead of automatically - converting them to static libraries. See policy :policy:`CMP0164`. diff --git a/Help/release/dev/cpack-innosetup-linux.rst b/Help/release/dev/cpack-innosetup-linux.rst deleted file mode 100644 index 8909ca9..0000000 --- a/Help/release/dev/cpack-innosetup-linux.rst +++ /dev/null @@ -1,5 +0,0 @@ -cpack-innosetup-linux ---------------------- - -* The :cpack_gen:`CPack Inno Setup Generator` is now available - on non-Windows hosts. diff --git a/Help/release/dev/cpack-nuget-dependency-groups.rst b/Help/release/dev/cpack-nuget-dependency-groups.rst deleted file mode 100644 index 37944f7..0000000 --- a/Help/release/dev/cpack-nuget-dependency-groups.rst +++ /dev/null @@ -1,7 +0,0 @@ -cpack-nuget-dependency-groups ------------------------------ - -* The :cpack_gen:`CPack NuGet Generator` can now generate dependency groups - for framework-specific dependencies. The :variable:`CPACK_NUGET_PACKAGE_TFMS` - was added to specify a list of framework TFMs for which groups should be - generated. diff --git a/Help/release/dev/cpack-wix.rst b/Help/release/dev/cpack-wix.rst deleted file mode 100644 index 020dfeb..0000000 --- a/Help/release/dev/cpack-wix.rst +++ /dev/null @@ -1,5 +0,0 @@ -cpack-wix ---------- - -* The :cpack_gen:`CPack WIX Generator` gained support for WiX Toolset v4. - See the :variable:`CPACK_WIX_VERSION` variable. diff --git a/Help/release/dev/curl-tls-version.rst b/Help/release/dev/curl-tls-version.rst deleted file mode 100644 index 26d03ad..0000000 --- a/Help/release/dev/curl-tls-version.rst +++ /dev/null @@ -1,26 +0,0 @@ -curl-tls-version ----------------- - -* The :command:`file(DOWNLOAD)` and :command:`file(UPLOAD)` commands - gained a ``TLS_VERSION <min>`` option to specify the minimum TLS - version for connections to ``https://`` URLs. - -* The :variable:`CMAKE_TLS_VERSION` variable and :envvar:`CMAKE_TLS_VERSION` - environment variable were added to specify a default minimum TLS version - for connections to ``https://`` URLs by the :command:`file(DOWNLOAD)` - and :command:`file(UPLOAD)` commands. - -* The :envvar:`CMAKE_TLS_VERIFY` environment variable was added as a fallback - to the existing :variable:`CMAKE_TLS_VERIFY` variable. It specifies - whether to verify the server certificate for ``https://`` URLs by default. - -* The :module:`ExternalProject` module's :command:`ExternalProject_Add` - command gained a ``TLS_VERSION <min>`` option, and support for the - :variable:`CMAKE_TLS_VERSION` variable and :envvar:`CMAKE_TLS_VERSION` - environment variable, to specify the minimum TLS version for connections - to ``https://`` URLs. - -* The :command:`ctest_submit` command and :option:`ctest -T Submit <ctest -T>` - step gained ``TLSVersion`` and ``TLSVerify`` options to control negotiation - with ``https://`` URLs. See the :variable:`CTEST_TLS_VERSION` and - :variable:`CTEST_TLS_VERIFY` variables. diff --git a/Help/release/dev/custom-transitive-properties.rst b/Help/release/dev/custom-transitive-properties.rst deleted file mode 100644 index 95c6e14..0000000 --- a/Help/release/dev/custom-transitive-properties.rst +++ /dev/null @@ -1,7 +0,0 @@ -custom-transitive-properties ----------------------------- - -* The :genex:`TARGET_PROPERTY` generator expression learned to evaluate - :ref:`custom transitive properties <Custom Transitive Properties>` - defined by new :prop_tgt:`TRANSITIVE_COMPILE_PROPERTIES` and - :prop_tgt:`TRANSITIVE_LINK_PROPERTIES` target properties. diff --git a/Help/release/dev/cxx-26.rst b/Help/release/dev/cxx-26.rst deleted file mode 100644 index 08e3fdd..0000000 --- a/Help/release/dev/cxx-26.rst +++ /dev/null @@ -1,8 +0,0 @@ -cxx-26 ------- - -* The :manual:`Compile Features <cmake-compile-features(7)>` functionality - now implements support for the ``cxx_std_26`` and ``cuda_std_26`` - meta-features to indicate that the compiler mode must be at least C++26. - These meta-features were first documented by CMake 3.25, but were not fully - implemented. diff --git a/Help/release/dev/dep-provider-try_compile.rst b/Help/release/dev/dep-provider-try_compile.rst deleted file mode 100644 index 666c9b1..0000000 --- a/Help/release/dev/dep-provider-try_compile.rst +++ /dev/null @@ -1,9 +0,0 @@ -dep-provider-try_compile ------------------------- - -* The :prop_gbl:`PROPAGATE_TOP_LEVEL_INCLUDES_TO_TRY_COMPILE` global property - can be used to propagate :variable:`CMAKE_PROJECT_TOP_LEVEL_INCLUDES` into - :command:`try_compile` calls that use the - :ref:`whole-project signature <Try Compiling Whole Projects>`. - This is primarily intended as a way for dependency providers to be enabled - in such :command:`try_compile` calls. diff --git a/Help/release/dev/deprecate-fetchcontent_populate.rst b/Help/release/dev/deprecate-fetchcontent_populate.rst deleted file mode 100644 index 9165415..0000000 --- a/Help/release/dev/deprecate-fetchcontent_populate.rst +++ /dev/null @@ -1,8 +0,0 @@ -deprecate-fetchcontent_populate -------------------------------- - -* Calling :command:`FetchContent_Populate` with just the name of a - dependency is now deprecated. Projects should call - :command:`FetchContent_MakeAvailable` instead. See policy :policy:`CMP0169`. - Calling :command:`FetchContent_Populate` with full population details - rather than just a dependency name remains fully supported. diff --git a/Help/release/dev/enable_language-before-project.rst b/Help/release/dev/enable_language-before-project.rst deleted file mode 100644 index 2b1fd1d..0000000 --- a/Help/release/dev/enable_language-before-project.rst +++ /dev/null @@ -1,6 +0,0 @@ -enable_language-before-project ------------------------------- - -* The :command:`enable_language` command now fails with an error - if it is called before the first :command:`project` call. - See policy :policy:`CMP0165`. diff --git a/Help/release/dev/enforce-fc-fully-disconnected-requirements.rst b/Help/release/dev/enforce-fc-fully-disconnected-requirements.rst deleted file mode 100644 index 2db759c..0000000 --- a/Help/release/dev/enforce-fc-fully-disconnected-requirements.rst +++ /dev/null @@ -1,9 +0,0 @@ -enforce-fc-fully-disconnected-requirements ------------------------------------------- - -* When :variable:`FETCHCONTENT_FULLY_DISCONNECTED` is set to true, - :command:`FetchContent_MakeAvailable` and the single-argument form of - :command:`FetchContent_Populate` require that the dependency's source - directory has already been populated. CMake 3.29 and earlier did not - check this requirement, but it is now enforced, subject to policy - :policy:`CMP0170`. diff --git a/Help/release/dev/fetchcontent-direct.rst b/Help/release/dev/fetchcontent-direct.rst deleted file mode 100644 index 7cb33ab..0000000 --- a/Help/release/dev/fetchcontent-direct.rst +++ /dev/null @@ -1,9 +0,0 @@ -fetchcontent-direct -------------------- - -* :module:`FetchContent` now prefers to populate content directly rather - than using a separate sub-build. This may significantly improve configure - times on some systems (Windows especially, but also on macOS when using - the Xcode generator). Policy :policy:`CMP0168` provides backward - compatibility for those projects that still rely on using a sub-build for - content population. diff --git a/Help/release/dev/fileapi-provide-glob-dependent.rst b/Help/release/dev/fileapi-provide-glob-dependent.rst deleted file mode 100644 index fa02272..0000000 --- a/Help/release/dev/fileapi-provide-glob-dependent.rst +++ /dev/null @@ -1,9 +0,0 @@ -fileapi-provide-glob-dependent ------------------------------- - -* The :manual:`cmake-file-api(7)` "cmakeFiles" version 1 object's ``version`` - field has been updated to 1.1. - -* The :manual:`cmake-file-api(7)` "cmakeFiles" version 1 object gained a - ``globsDependent`` field to report :command:`file(GLOB)` calls using - ``CONFIGURE_DEPENDS``. diff --git a/Help/release/dev/genex-compiler-frontend-variant.rst b/Help/release/dev/genex-compiler-frontend-variant.rst deleted file mode 100644 index 221f278..0000000 --- a/Help/release/dev/genex-compiler-frontend-variant.rst +++ /dev/null @@ -1,6 +0,0 @@ -genex-compiler-frontent-variant -------------------------------- - -* Generator expressions ``$<<LANG>_COMPILER_FRONTEND_VARIANT:...>`` were added that allow - access to the value of the associated :variable:`CMAKE_<LANG>_COMPILER_FRONTEND_VARIANT` - variables. diff --git a/Help/release/dev/genex-link-properties.rst b/Help/release/dev/genex-link-properties.rst deleted file mode 100644 index e1e84e0..0000000 --- a/Help/release/dev/genex-link-properties.rst +++ /dev/null @@ -1,8 +0,0 @@ -genex-link-properties ---------------------- - -* The :genex:`TARGET_PROPERTY` generator expression now evaluates target - properties :prop_tgt:`INTERFACE_LINK_OPTIONS`, - :prop_tgt:`INTERFACE_LINK_DIRECTORIES`, and - :prop_tgt:`INTERFACE_LINK_DEPENDS` correctly by following private - dependencies of static libraries. See policy :policy:`CMP0166`. diff --git a/Help/release/dev/genex-quote.rst b/Help/release/dev/genex-quote.rst deleted file mode 100644 index 61bcfc0..0000000 --- a/Help/release/dev/genex-quote.rst +++ /dev/null @@ -1,4 +0,0 @@ -genex-quote ------------ - -* The :genex:`$<QUOTE>` generator expression was added to evaluate to ``"``. diff --git a/Help/release/dev/lang-standard-latest.rst b/Help/release/dev/lang-standard-latest.rst deleted file mode 100644 index b4713b6..0000000 --- a/Help/release/dev/lang-standard-latest.rst +++ /dev/null @@ -1,5 +0,0 @@ -lang-standard-latest --------------------- - -* The :variable:`CMAKE_<LANG>_STANDARD_LATEST` variable was added to - describe the latest supported standard of language ``<LANG>``. diff --git a/Help/release/dev/preset-includes-macro-expansion.rst b/Help/release/dev/preset-includes-macro-expansion.rst deleted file mode 100644 index 83aace4..0000000 --- a/Help/release/dev/preset-includes-macro-expansion.rst +++ /dev/null @@ -1,7 +0,0 @@ -preset-includes-macro-expansion -------------------------------- - -* :manual:`cmake-presets(7)` files now support schema version ``9``: - - * ``include`` fields now expand all macros except ``$env{}`` and - preset-specific macros. diff --git a/Help/release/dev/print-configure-generate-time.rst b/Help/release/dev/print-configure-generate-time.rst deleted file mode 100644 index 098ca6e..0000000 --- a/Help/release/dev/print-configure-generate-time.rst +++ /dev/null @@ -1,8 +0,0 @@ -print-configure-generate-time ------------------------------ - -* The durations printed after "Configuring done" and "Generating done" - messages now reflect time spent in generator-specific steps, and - in a code model evaluation step at the beginning of generation that - was not previously captured. Printed durations may appear longer - than in previous versions of CMake. diff --git a/Help/release/dev/prop-GENERATED-visibility.rst b/Help/release/dev/prop-GENERATED-visibility.rst deleted file mode 100644 index 33f28d9..0000000 --- a/Help/release/dev/prop-GENERATED-visibility.rst +++ /dev/null @@ -1,6 +0,0 @@ -prop-GENERATED-visibility -------------------------- - -* The :prop_sf:`GENERATED` source file property is now visible in all - directories. See policy :policy:`CMP0163`. Policy :policy:`CMP0118`'s - documentation has been revised to describe its actual effects. diff --git a/Help/release/dev/rel-win-PATH.rst b/Help/release/dev/rel-win-PATH.rst deleted file mode 100644 index f4a7360..0000000 --- a/Help/release/dev/rel-win-PATH.rst +++ /dev/null @@ -1,8 +0,0 @@ -rel-win-PATH ------------- - -* The precompiled Windows ``.msi`` installers provided on - `cmake.org <https://cmake.org/download/>`_, when performing a fresh - installation, now modify the system-wide ``PATH`` by default. - When replacing an existing installation, the ``PATH`` modification - preference is preserved by default. diff --git a/Help/release/dev/rel-zip-newlines.rst b/Help/release/dev/rel-zip-newlines.rst deleted file mode 100644 index 43de464..0000000 --- a/Help/release/dev/rel-zip-newlines.rst +++ /dev/null @@ -1,6 +0,0 @@ -rel-zip-newlines ----------------- - -* The official ``.zip`` source archive provided on - `cmake.org <https://cmake.org/download/>`_ now uses LF newlines, - instead of CRLF newlines, for consistency with modern conventions. diff --git a/Help/release/dev/remove-vs9-generator.rst b/Help/release/dev/remove-vs9-generator.rst deleted file mode 100644 index 2ff805c..0000000 --- a/Help/release/dev/remove-vs9-generator.rst +++ /dev/null @@ -1,4 +0,0 @@ -remove-vs9-generator --------------------- - -* The :generator:`Visual Studio 9 2008` generator has been removed. diff --git a/Help/release/dev/vs-UseDebugLibraries.rst b/Help/release/dev/vs-UseDebugLibraries.rst deleted file mode 100644 index b3774a9..0000000 --- a/Help/release/dev/vs-UseDebugLibraries.rst +++ /dev/null @@ -1,10 +0,0 @@ -vs-UseDebugLibraries --------------------- - -* :ref:`Visual Studio Generators` now add ``UseDebugLibraries`` indicators to - ``.vcxproj`` files to denote which configurations are debug configurations. - See policy :policy:`CMP0162`. - -* The :variable:`CMAKE_VS_USE_DEBUG_LIBRARIES` variable and corresponding - :prop_tgt:`VS_USE_DEBUG_LIBRARIES` target property were added to explicitly - control ``UseDebugLibraries`` indicators in ``.vcxproj`` files. diff --git a/Help/release/dev/vs-filter-props.rst b/Help/release/dev/vs-filter-props.rst deleted file mode 100644 index 5a09511..0000000 --- a/Help/release/dev/vs-filter-props.rst +++ /dev/null @@ -1,6 +0,0 @@ -vs-filter-props ---------------- - -* A :prop_tgt:`VS_FILTER_PROPS` target property was added to tell - :ref:`Visual Studio Generators` for VS 2010 and above to use a - custom MSBuild filter ``.props`` file. diff --git a/Help/release/index.rst b/Help/release/index.rst index a809467..fbff07b 100644 --- a/Help/release/index.rst +++ b/Help/release/index.rst @@ -15,6 +15,7 @@ Releases .. toctree:: :maxdepth: 1 + 3.30 <3.30> 3.29 <3.29> 3.28 <3.28> 3.27 <3.27> |