3.18.rst 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. CMake 3.18 Release Notes
  2. ************************
  3. .. only:: html
  4. .. contents::
  5. Changes made since CMake 3.17 include the following.
  6. New Features
  7. ============
  8. Languages
  9. ---------
  10. * The ``CUDA`` language can now be compiled using Clang on non-Windows
  11. platforms. Separable compilation is not yet supported on any platform.
  12. Command-Line
  13. ------------
  14. * :manual:`cmake(1)` gained support for profiling of CMake scripts through
  15. the parameters ``--profiling-output`` and ``--profiling-format``.
  16. * :manual:`cmake(1)` gained a ``cat`` command line
  17. option that can be used to concatenate files and print them
  18. on standard output.
  19. Commands
  20. --------
  21. * The :command:`add_library` and :command:`add_executable` commands
  22. learned to create :ref:`Alias Targets` referencing non-``GLOBAL``
  23. :ref:`Imported Targets`.
  24. * The :command:`cmake_language()` command was added for meta-operations on
  25. scripted or built-in commands, starting with a mode to ``CALL`` other
  26. commands, and ``EVAL CODE`` to inplace evaluate a CMake script.
  27. * The :command:`execute_process` command gained the ``ECHO_OUTPUT_VARIABLE``
  28. and ``ECHO_ERROR_VARIABLE`` options.
  29. * The :command:`export` command now raise an error if used multiple times with
  30. same ``FILE`` without ``APPEND``. See policy :policy:`CMP0103`.
  31. * The :command:`file` command gained the ``ARCHIVE_CREATE`` and
  32. ``ARCHIVE_EXTRACT`` subcommands to expose the :manual:`cmake(1)` ``-E tar``
  33. functionality to CMake scripting code.
  34. * The :command:`file(CONFIGURE)` subcommand was created in order to replicate
  35. the :command:`configure_file` functionality without resorting to a
  36. pre-existing file on disk as input. The content is instead passed as a
  37. string.
  38. * The :command:`file(UPLOAD)` command gained ``TLS_VERIFY`` and ``TLS_CAINFO``
  39. options to control server certificate verification.
  40. * The :command:`find_program`, :command:`find_library`, :command:`find_path`
  41. and :command:`find_file` commands gained a new ``REQUIRED`` option that will
  42. stop processing with an error message if nothing is found.
  43. * The :command:`get_property` command with ``SOURCE`` scope gained the
  44. ``DIRECTORY`` and ``TARGET_DIRECTORY`` options to get a property
  45. from the provided directory scope.
  46. * The :command:`get_source_file_property` command gained the ``DIRECTORY``
  47. and ``TARGET_DIRECTORY`` options to get a property from the
  48. provided directory scope.
  49. * The :command:`list` operation ``SORT`` gained the ``NATURAL`` sort
  50. option to sort using natural order (see ``strverscmp(3)`` manual).
  51. * The :command:`set_property` command with the ``SOURCE`` scope gained the
  52. ``DIRECTORY`` and ``TARGET_DIRECTORY`` options to set properties
  53. in the provided directory scopes.
  54. * The :command:`set_source_files_properties` command gained the ``DIRECTORY``
  55. and ``TARGET_DIRECTORY`` options to set properties in the provided
  56. directory scopes.
  57. * The :command:`string` command learned a new ``HEX`` sub-command, which
  58. converts strings into their hexadecimal representation.
  59. Variables
  60. ---------
  61. * A :variable:`CMAKE_CUDA_ARCHITECTURES` variable was added to specify
  62. CUDA output architectures. Users are encouraged to use this instead of
  63. specifying options manually, as this approach is compiler-agnostic.
  64. The variable is initialized automatically when
  65. :variable:`CMAKE_CUDA_COMPILER_ID <CMAKE_<LANG>_COMPILER_ID>` is ``NVIDIA``.
  66. The variable is used to initialize the new :prop_tgt:`CUDA_ARCHITECTURES`
  67. target property. See policy :policy:`CMP0104`.
  68. * The :variable:`CMAKE_PCH_WARN_INVALID` variable was added to initialize the
  69. :prop_tgt:`PCH_WARN_INVALID` target property to allow the removal of the
  70. precompiled header invalid warning.
  71. Properties
  72. ----------
  73. * The :prop_tgt:`CUDA_ARCHITECTURES` target property was added to specify
  74. CUDA output architectures. Users are encouraged to use this instead of
  75. specifying options manually, as this approach is compiler-agnostic.
  76. The property is initialized by the new :variable:`CMAKE_CUDA_ARCHITECTURES`
  77. variable. See policy :policy:`CMP0104`.
  78. * The :prop_tgt:`Fortran_PREPROCESS` target property and
  79. :prop_sf:`Fortran_PREPROCESS` source-file property were added to
  80. control preprocessing of Fortran source files.
  81. * The :prop_tgt:`FRAMEWORK_MULTI_CONFIG_POSTFIX_<CONFIG>` target property
  82. and associated :variable:`CMAKE_FRAMEWORK_MULTI_CONFIG_POSTFIX_<CONFIG>`
  83. variable were created to allow adding a postfix to the name of a
  84. framework file name when using a multi-config generator.
  85. * The :prop_sf:`OBJECT_OUTPUTS` source file property now supports
  86. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  87. * The :prop_tgt:`PCH_WARN_INVALID` target property was added to allow the
  88. removal of the precompiled header invalid warning.
  89. * The :prop_tgt:`UNITY_BUILD_MODE` target property was added to tell
  90. generators which algorithm to use for grouping included source
  91. files.
  92. * The :prop_tgt:`VS_SOURCE_SETTINGS_<tool>` target property was added
  93. to tell :ref:`Visual Studio Generators` for VS 2010 and above to add
  94. metadata to non-built source files using ``<tool>``.
  95. * The :prop_sf:`VS_SETTINGS` source file property was added to tell
  96. :ref:`Visual Studio Generators` for VS 2010 and above to add
  97. metadata to a non-built source file.
  98. * The :prop_tgt:`VS_PLATFORM_TOOLSET` target property was added to tell
  99. :ref:`Visual Studio Generators` for VS 2010 and above to override
  100. the platform toolset.
  101. * The :prop_tgt:`VS_SOLUTION_DEPLOY` target property was added to tell
  102. :ref:`Visual Studio Generators` for VS 2010 and above to mark a
  103. target for deployment even when not building for Windows Phone/Store/CE.
  104. Modules
  105. -------
  106. * The :module:`CheckLinkerFlag` module has been added to provide a
  107. facility to check validity of link flags.
  108. * The :module:`ExternalProject` module :command:`ExternalProject_Add` command
  109. gained a new ``GIT_REMOTE_UPDATE_STRATEGY`` keyword. This can be used to
  110. specify how failed rebase operations during a git update should be handled.
  111. The ``CMAKE_EP_GIT_REMOTE_UPDATE_STRATEGY`` variable was also added as a
  112. global default and is honored by both the :module:`ExternalProject` and
  113. :module:`FetchContent` modules.
  114. * The :module:`FetchContent` module :command:`FetchContent_Declare` command
  115. now supports a ``SOURCE_SUBDIR`` option. It can be used to direct
  116. :command:`FetchContent_MakeAvailable` to look in a different location
  117. for the ``CMakeLists.txt`` file.
  118. * The :module:`FindBLAS` module now provides an imported target.
  119. * The :module:`FindCUDAToolkit` module:
  120. * gained the variable
  121. ``CUDAToolkit_LIBRARY_ROOT``, which is the directory containing the
  122. ``nvvm`` directory and ``version.txt``.
  123. * uses toolkit and library root found during ``CUDA`` compiler detection.
  124. * The :module:`FindLAPACK` module now provides an imported target.
  125. * The :module:`FindPython3`, :module:`FindPython2` and :module:`FindPython`
  126. modules:
  127. * gained the possibility to create per-artifact cache variables for
  128. interactive editing in :manual:`cmake-gui(1)` and :manual:`ccmake(1)`.
  129. * gained sub-components ``Development.Module`` and
  130. ``Development.Embed`` under the ``Development`` component.
  131. * gained the capability to specify which Python implementations to find,
  132. including ``IronPython`` and ``PyPy``.
  133. * The :module:`FindRuby` module input and output variables were all renamed
  134. from ``RUBY_`` to ``Ruby_`` for consistency with other find modules.
  135. Input variables of the old case will be honored if provided, and output
  136. variables of the old case are always provided.
  137. * The :module:`FindSWIG` module now accepts target languages as ``COMPONENTS``
  138. and ``OPTIONAL_COMPONENTS`` arguments to ``find_package``.
  139. * The :module:`GoogleTest` module :command:`gtest_discover_tests` command:
  140. * gained a new ``DISCOVERY_MODE`` option to control when the test
  141. discovery step is run. It offers a new ``PRE_TEST`` setting to
  142. run the discovery at test time instead of build time. A new
  143. ``CMAKE_GTEST_DISCOVER_TESTS_DISCOVERY_MODE`` variable can be used
  144. to change the default globally.
  145. * gained a new optional parameter ``XML_OUTPUT_DIR``. When set the
  146. JUnit XML test results are stored in that directory.
  147. * The :module:`FindLibXslt` module now provides imported targets.
  148. * The :module:`UseSWIG` module now supports Fortran as a target language if
  149. the ``SWIG_EXECUTABLE`` is SWIG-Fortran_.
  150. .. _`SWIG-Fortran`: https://github.com/swig-fortran/swig
  151. Generator Expressions
  152. ---------------------
  153. * The :genex:`$<DEVICE_LINK:...>` and :genex:`$<HOST_LINK:...>`
  154. generator expressions were added to manage device and host link steps.
  155. * The :genex:`$<LINK_LANGUAGE:...>` and :genex:`$<LINK_LANG_AND_ID:...>`
  156. generator expressions were added.
  157. CTest
  158. -----
  159. * :manual:`ctest(1)` gained a new :variable:`CTEST_RESOURCE_SPEC_FILE`
  160. variable, which can be used to specify a
  161. :ref:`resource specification file <ctest-resource-specification-file>`.
  162. * :manual:`ctest(1)` gained a ``--stop-on-failure`` option,
  163. which can be used to stop running the tests once one has failed.
  164. * The :command:`ctest_test` command gained a ``STOP_ON_FAILURE`` option
  165. which can be used to stop running the tests once one has failed.
  166. * The :module:`CTestCoverageCollectGCOV` module
  167. :command:`ctest_coverage_collect_gcov` command gained a
  168. ``TARBALL_COMPRESSION`` option to control compression of the
  169. tarball of collected results.
  170. CPack
  171. -----
  172. * The :cpack_gen:`CPack Archive Generator`'s ``TXZ`` format learned the
  173. :variable:`CPACK_ARCHIVE_THREADS` variable to enable parallel compression.
  174. Requires support in the ``liblzma`` used by CMake.
  175. * The :cpack_gen:`CPack NSIS Generator` gained a new variable
  176. :variable:`CPACK_NSIS_MANIFEST_DPI_AWARE` to declare that the
  177. installer is DPI-aware.
  178. * The :cpack_gen:`CPack RPM Generator` gained
  179. :variable:`CPACK_RPM_PRE_TRANS_SCRIPT_FILE` and
  180. :variable:`CPACK_RPM_POST_TRANS_SCRIPT_FILE`
  181. variables to specify pre- and post-transaction scripts.
  182. Other
  183. -----
  184. * :manual:`cmake-gui(1)` now populates its generator selection
  185. widget default value from the :envvar:`CMAKE_GENERATOR` environment
  186. variable. Additionally, environment variables
  187. :envvar:`CMAKE_GENERATOR_PLATFORM` and :envvar:`CMAKE_GENERATOR_TOOLSET`
  188. are used to populate their respective widget defaults.
  189. * :manual:`ccmake(1)` learned to read a :envvar:`CCMAKE_COLORS`
  190. environment variable to customize colors.
  191. * The :manual:`Compile Features <cmake-compile-features(7)>` functionality
  192. is now aware of the availability of C11 features in MSVC 19.27 and 19.28,
  193. including support for the ``c_restrict``, ``c_static_assert`` features and
  194. the ``-std:c11`` flag.
  195. Deprecated and Removed Features
  196. ===============================
  197. * The :module:`Documentation` module has been deprecated via
  198. :policy:`CMP0106`. This module was essentially VTK code that CMake should
  199. not be shipping anymore.
  200. * An explicit deprecation diagnostic was added for policy ``CMP0070``
  201. and policy ``CMP0071`` (``CMP0069`` and below were already deprecated).
  202. The :manual:`cmake-policies(7)` manual explains that the OLD behaviors
  203. of all policies are deprecated and that projects should port to the
  204. NEW behaviors.
  205. Other Changes
  206. =============
  207. * On Windows, the :generator:`Ninja` and :generator:`Ninja Multi-Config`
  208. generators, when a compiler is not explicitly specified, now select
  209. the first compiler (of any name) found in directories listed by the
  210. ``PATH`` environment variable.
  211. * The :prop_tgt:`LINK_OPTIONS` and :prop_tgt:`INTERFACE_LINK_OPTIONS` target
  212. properties are now used for the device link step.
  213. See policy :policy:`CMP0105`.
  214. * Creation of an ``ALIAS`` target overwriting an existing target now raises an
  215. error. See policy :policy:`CMP0107`.
  216. * Linking a target to itself through an alias now raises an error.
  217. See policy :policy:`CMP0108`.
  218. * The :module:`FindPackageHandleStandardArgs` module option ``REQUIRED_VARS``
  219. is now optional if ``HANDLE_COMPONENTS`` is specified.
  220. * The :command:`source_group` command now also recognizes forward slashes
  221. as subgroup delimiters, not just backslashes.
  222. * :manual:`ctest(1)` now logs environment variables that it sets for each test,
  223. either due to the :prop_test:`ENVIRONMENT` property or the
  224. :ref:`resource allocation <ctest-resource-allocation>` feature, and submits
  225. this log to CDash. It does not log environment variables that were set
  226. outside of CTest.
  227. * When building CMake itself from source and not using a system-provided
  228. libcurl, HTTP/2 support is now enabled for commands supporting
  229. network communication via ``http(s)``, such as :command:`file(DOWNLOAD)`,
  230. :command:`file(UPLOAD)`, and :command:`ctest_submit`.
  231. The precompiled binaries provided on ``cmake.org`` now support HTTP/2.
  232. * The :manual:`cmake-file-api(7)` "codemodel" version 2 ``version`` field has
  233. been updated to 2.1.
  234. * The :manual:`cmake-file-api(7)` "codemodel" version 2 "target" object gained
  235. a new ``precompileHeaders`` field in the ``compileGroups`` objects.
  236. Updates
  237. =======
  238. Changes made since CMake 3.18.0 include the following.
  239. 3.18.1
  240. ------
  241. * The :generator:`Xcode` generator, when :variable:`CMAKE_OSX_ARCHITECTURES`
  242. is not defined, now selects ``$(NATIVE_ARCH_ACTUAL)`` as the default
  243. architecture (the Xcode ``ARCHS`` setting). This is needed for Xcode 12
  244. to select the host's architecture, which older versions of Xcode did
  245. by default.
  246. * In CMake 3.18.0 the :command:`add_test` command learned to support
  247. special characters in test names. This was accidentally left out of
  248. its release notes. Unfortunately the fix breaks existing projects
  249. that were using manual quoting or escaping to work around the prior
  250. limitation. This fix has been reverted in 3.18.1, but may be
  251. re-introduced in future versions of CMake with a policy for compatibility.
  252. 3.18.2
  253. ------
  254. * The default value of :variable:`CMAKE_AUTOMOC_PATH_PREFIX` was changed to
  255. ``OFF`` because this feature can break existing projects that have
  256. identically named header files in different include directories.
  257. This restores compatibility with behavior of CMake 3.15 and below.
  258. The default was also changed to ``OFF`` in 3.16.9 and 3.17.5.
  259. * The :manual:`Compile Features <cmake-compile-features(7)>` functionality
  260. was updated for MSVC 19.27 as mentioned above (``c_restrict``).
  261. 3.18.3
  262. ------
  263. * The :manual:`Compile Features <cmake-compile-features(7)>` functionality
  264. was updated for MSVC 19.28 as mentioned above (``c_static_assert``).