https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
f3d9a82 CMake 3.27.2 10 August 2023, 15:30:44 UTC
065474d Merge topic 'vs-sdk-selection' into release-3.27 89b611ab32 VS: Select latest Windows SDK even when targeting Windows 8.1 and below ae97d82e83 VS: Teach CMAKE_GENERATOR_PLATFORM to support Windows 8.1 SDK selection 15ff89654b VS: Teach CMAKE_GENERATOR_PLATFORM to use Windows 10 SDKs for older versions bba1a23da9 VS: Consolidate Windows SDK major version selection dispatch 209973e510 VS: Do not print empty Windows SDK version when none is selected ec6dd77053 Tests: Remove redundant condition in RunCMake.GeneratorPlatform test 4776a584ad Help: Add 3.27 release note on VS default SDK selection Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8697 10 August 2023, 15:27:47 UTC
89b611a VS: Select latest Windows SDK even when targeting Windows 8.1 and below The policy added by commit f90c8ab54e (VS: Select latest available Windows SDK version by default, 2023-04-03, v3.27.0-rc1~206^2~1) applied only when targeting Windows 10+. Apply it to older versions too. Fixes: #25170 Issue: #16202 10 August 2023, 13:59:25 UTC
ae97d82 VS: Teach CMAKE_GENERATOR_PLATFORM to support Windows 8.1 SDK selection Honor an explicit `version=8.1` field value regardless of the Windows target version. Issue: #25170 10 August 2023, 13:57:00 UTC
15ff896 VS: Teach CMAKE_GENERATOR_PLATFORM to use Windows 10 SDKs for older versions Honor an explicit `version=` field selecting a Windows 10 SDK regardless of the Windows target version. Issue: #25170 10 August 2023, 13:34:50 UTC
bba1a23 VS: Consolidate Windows SDK major version selection dispatch Make logic choosing between Windows 10 SDKs and the Windows 8.1 SDK easier to follow by consolidating it in the VS 14 generator. The only information we need from VS 15+ generators is whether the 8.1 SDK is installed. 10 August 2023, 13:33:20 UTC
209973e VS: Do not print empty Windows SDK version when none is selected 10 August 2023, 13:33:19 UTC
ec6dd77 Tests: Remove redundant condition in RunCMake.GeneratorPlatform test 10 August 2023, 13:30:19 UTC
d22a1f0 Merge topic 'sphinx-search-index' into release-3.27 fbed0431c2 ci: Suppress cmake.org html documentation search results for index entries Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8700 10 August 2023, 12:59:34 UTC
fbed043 ci: Suppress cmake.org html documentation search results for index entries Since Sphinx 5.2.0, the generated html search page reports all index entries that match a query term. Unfortunately even non-main entries get a high score, placing them before more important search results such as document titles and domain object names. Work around this for documentation published on `cmake.org` by removing the logic from `searchtools.js` in the generated html documentation. Issue: #25175 10 August 2023, 00:05:39 UTC
4776a58 Help: Add 3.27 release note on VS default SDK selection This was accidentally left out of commit f90c8ab54e (VS: Select latest available Windows SDK version by default, 2023-04-03, v3.27.0-rc1~206^2~1). Issue: #16202 09 August 2023, 00:35:02 UTC
4a8f926 Merge topic 'file-GENERATE-arg-parsing' into release-3.27 88f90a72f1 file(GENERATE): Restore INPUT|CONTENT parse checking Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8694 08 August 2023, 14:06:38 UTC
a707bc1 Merge topic 'help-importing-exporting-lib' into release-3.27 b7704e8818 Help/guide/importing-exporting: Update line numbers in prose Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8691 08 August 2023, 14:04:57 UTC
c433a83 Merge topic 'FindJNI-xcode-12.2' into release-3.27 efa0e2ddaf FindJNI: Update for Xcode greater than 12.1 on macOS Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8690 08 August 2023, 13:52:25 UTC
741d198 Merge topic 'cmList-append-regression' into release-3.27 7f9f96151a cmList: Fix performance regression in append/prepend Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8684 08 August 2023, 13:39:04 UTC
88f90a7 file(GENERATE): Restore INPUT|CONTENT parse checking Refactoring in commit bff468c988 (cmFileCommand: Use cm::optional for keyword argument presence, 2022-06-30, v3.25.0-rc1~512^2) accidentally broke the check that the input argument is either `INPUT` or `CONTENT`. The check is supposed to fail when arguments are passed in the wrong order. For example: file(GENERATE OUTPUT ... TARGET <target> CONTENT <content>) Prior to this fix, the input method would be CONTENT, but because the first parsed keyword is not `CONTENT`, `inputIsContent` would be false. The first parsed keyword isn't INPUT either, so we would not continue into the error condition. CMake would then try to handle this as an input file, when there isn't one, resulting in uninitialized memory usage and segfaults or corruption later on. Fixes: #25169 07 August 2023, 23:17:29 UTC
b7704e8 Help/guide/importing-exporting: Update line numbers in prose These were missed in commit aef057d0e8 (Help/guide: fix MathFunctionsTargets.cmake path in importing-exporting, 2023-05-26, v3.27.0-rc1~39^2) when a line was added to the example code. 07 August 2023, 22:39:03 UTC
bd365b5 Merge topic 'doc-fixups-release-3.27' into release-3.27 78e7ea598d cmLocalGenerator: Fix trivial spelling error in code comment 1285fe27ff Help: Improve formatting and fix wording for ENABLE_EXPORTS 91336d061c Help: Improve formatting and cross-references for DEPENDS_EXPLICIT_ONLY 03208d9e18 Help: Fix indenting within TARGET_RUNTIME_DLLS genex docs Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8688 07 August 2023, 22:10:55 UTC
efa0e2d FindJNI: Update for Xcode greater than 12.1 on macOS `JavaVM.framework` was removed from Xcode in version 12.2+. Fixes: #23364 07 August 2023, 20:09:22 UTC
cbcd297 Merge topic 'revert-vs-show-cmake-files' into release-3.27 0d1529000d VS: Revert "Add CMake input files to ZERO_CHECK" Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8681 07 August 2023, 15:34:04 UTC
78e7ea5 cmLocalGenerator: Fix trivial spelling error in code comment 06 August 2023, 08:23:24 UTC
1285fe2 Help: Improve formatting and fix wording for ENABLE_EXPORTS 06 August 2023, 08:22:51 UTC
91336d0 Help: Improve formatting and cross-references for DEPENDS_EXPLICIT_ONLY 04 August 2023, 09:16:28 UTC
03208d9 Help: Fix indenting within TARGET_RUNTIME_DLLS genex docs 04 August 2023, 09:16:28 UTC
7f9f961 cmList: Fix performance regression in append/prepend Fixes: #25147 04 August 2023, 07:52:08 UTC
0d15290 VS: Revert "Add CMake input files to ZERO_CHECK" Since commit df58dbb0e9 (VS: Add CMake input files to ZERO_CHECK, 2023-03-19, v3.27.0-rc1~157^2), projects that specify the same file both as input to `configure_file` and as the `MAIN_DEPENDENCY` of a custom command fail to configure. Revert the change pending further investigation. Add a test case demonstrating the problem. Issue: #24557 Fixes: #25149 02 August 2023, 15:53:48 UTC
6e4822a Merge topic 'FindPython-Debian-workaround' into release-3.27 b02f3872d0 FindPython: Restore Python_SITE* values for versions below 3.10 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8672 01 August 2023, 13:22:30 UTC
b02f387 FindPython: Restore Python_SITE* values for versions below 3.10 Debian based distributions have a buggy sysconfig package. So, rely on distutils.sysconfig if python version is less than 3.10. Fixes: #25135 31 July 2023, 19:00:44 UTC
094b98a Merge topic 'cxx-atomic' into release-3.27 78bbd58545 Source: Link libatomic when needed on Linux 32-bit ARM Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8663 28 July 2023, 13:08:39 UTC
78bbd58 Source: Link libatomic when needed on Linux 32-bit ARM Fixes: #25114 27 July 2023, 15:07:21 UTC
2d8aeac Merge topic 'doc-if-exists' into release-3.27 3ab132d86f Help: Document that if(EXISTS) requires paths to be readable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8656 27 July 2023, 13:59:19 UTC
3ab132d Help: Document that if(EXISTS) requires paths to be readable Issue: #25125 26 July 2023, 15:06:53 UTC
b5c54d9 CMake 3.27.1 25 July 2023, 17:58:09 UTC
d5b5af6 Merge topic 'property-typo-fix' into release-3.27 c172eecea6 cmTarget: Restore Fortran_PREPROCESS property initialization Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8654 25 July 2023, 17:55:55 UTC
c172eec cmTarget: Restore Fortran_PREPROCESS property initialization Fix a typo from commit e522f8ca06 (cmTarget: factor out properties initialized for target which compile, 2023-02-01, v3.27.0-rc1~577^2~13), that broke this property. Also update the test suite to use this upgrade as some level of coverage. Fixes: #25123 25 July 2023, 15:35:24 UTC
bc3486c Merge branch 'release-3.26' into release-3.27 25 July 2023, 15:28:53 UTC
d89bcc8 Merge topic 'cdash_checksum_400' into release-3.27 b7c871f745 ctest: Update ctest_submit for CDash behavior change Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8648 25 July 2023, 15:03:05 UTC
1e085cb Merge topic 'fix-ctest-timeout-regression' into release-3.27 0e8584c89c CTest: Fix regression in calculating test timeout Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8647 25 July 2023, 13:21:10 UTC
091005f Merge branch 'cdash_checksum_400' into release-3.26 Merge-request: !8648 25 July 2023, 13:13:53 UTC
b7c871f ctest: Update ctest_submit for CDash behavior change open.cdash.org was recently upgraded in preparation for the release of CDash v3.2.0. This upgrade brought a change in behavior where CDash now responds with HTTP 400 (bad request) rather than HTTP 200 (OK) for MD5 checksum mismatches during submission time. This commit removes our usage of CURLOPT_FAILONERROR in cmCTestSubmitHandler.cxx This was necessary to pass along the contents of the request body ("md5 mismatch") in cases where the web server (CDash) responds with an error status (400). Fixes: #25121 25 July 2023, 13:09:56 UTC
0e8584c CTest: Fix regression in calculating test timeout Fixes: #25120 24 July 2023, 23:29:54 UTC
21721ad Merge topic 'dyndep-module-info-objlib-dependency' into release-3.27 b665966933 cmComputeLinkInformation: track OBJECT library dependencies a99b87a628 Tests/RunCMake/CXXModules: add a test for issue #25112 2870a67540 Tests/FortranOnly: add a test case for issue #25112 Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8645 24 July 2023, 12:31:52 UTC
b665966 cmComputeLinkInformation: track OBJECT library dependencies In commit b6a5382217 (Ninja: depend on language module information files directly, 2023-02-10), introduced via !8197, language-specific module information files (`CMakeFiles/<target>.dir/<lang>Modules.json`) files were added as real dependencies to the dyndep collation steps. Previously, the behavior was to inform the collator of all possible targets and search for the files manually ignoring those which did not exist with ordering enforced by depending on the linker output of all dependent targets. This behavior could lead to stale information being used (e.g., if a target stops providing any targets) and also did not reliably build everything needed on rebuilds. Afterwards, the internal computation changed the dependency from all possible targets to an exact set of "these targets might have modules" query, however one that did not include `OBJECT` libraries since do not have `LinkEntry` items internally (their objects are instead treated as source files). As a stopgap measure, track `OBJECT` libraries in a separate list and query them explicitly when gathering targets which may have interesting information. Future work can add `LinkEntry` items to represent these targets once all `LinkEntry` consumers have been audited to make sure they are not surprised by any `OBJECT` library entries. Fixes: #25112 22 July 2023, 11:12:43 UTC
a99b87a Tests/RunCMake/CXXModules: add a test for issue #25112 Add a test case for C++ `OBJECT` libraries providing modules to consumers. 22 July 2023, 10:53:38 UTC
2870a67 Tests/FortranOnly: add a test case for issue #25112 Add a test case for Fortran `OBJECT` libraries providing modules to consumers. 22 July 2023, 10:53:36 UTC
3ea7204 Merge topic 'FindOpenSSL-trust-root-dir' into release-3.27 791d4fd350 FindOpenSSL: Prefer OPENSSL_ROOT_DIR only if non-empty Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8643 21 July 2023, 13:37:28 UTC
50c9723 Merge branch 'release-3.26' into release-3.27 21 July 2023, 13:36:14 UTC
b4693ea Merge topic 'FindCUDAToolkit-libnvrtc-builtins' into release-3.27 c2601d01d1 FindCUDAToolkit: Fix nvrtc_builtins library name Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Robert Maynard <robertjmaynard@gmail.com> Merge-request: !8642 21 July 2023, 13:35:09 UTC
791d4fd FindOpenSSL: Prefer OPENSSL_ROOT_DIR only if non-empty Since commit 5cc8a69867 (FindOpenSSL: Trust the user's OPENSSL_ROOT_DIR, 2023-05-17, v3.27.0-rc1~71^2) we use `OPENSSL_ROOT_DIR` whenever it is defined, even if it is an empty string. This breaks a pattern in existing projects that define an empty `OPENSSL_ROOT_DIR` cache entry so that `cmake-gui` users can fill it in. Use the value only if non-empty. Issue: #18352 20 July 2023, 16:18:13 UTC
eace51a Merge branch 'FindCUDAToolkit-libnvrtc-builtins' into release-3.26 Merge-request: !8642 20 July 2023, 15:37:25 UTC
c2601d0 FindCUDAToolkit: Fix nvrtc_builtins library name The lib is named `libnvrtc-builtins.so`, not `libnvrtc_builtins.so`. Update the change from commit 2a94c762ed (FindCUDAToolkit: Add support for CUDA::nvrtc_static, 2023-01-20, v3.26.0-rc1~55^2). Apply a fix similar to commit 9688a8ebc2 (FindCUDAToolkit: Fix `nvrtc_builtins_static` library name, 2023-02-03, v3.26.0-rc2~15^2). 20 July 2023, 15:34:47 UTC
8ea4a99 Merge branch 'release-3.26' into release-3.27 19 July 2023, 18:40:17 UTC
01c62f4 CMake 3.26.5 19 July 2023, 17:56:04 UTC
784596b CMake 3.27.0 18 July 2023, 17:52:42 UTC
44698f1 Merge topic 'export-doc-config-map' into release-3.27 38737e3970 Help: Mention imported config mapping in export() and install() docs Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8637 18 July 2023, 17:51:15 UTC
74c41f8 Merge branch 'release-3.26' into release-3.27 18 July 2023, 17:49:46 UTC
a881ae6 Merge topic 'armclang-update-version-computation' into release-3.27 65fac2fa35 ARMClang: Fix computation of compiler semantic version patch level Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8636 18 July 2023, 17:48:49 UTC
0ef3b9f Merge branch 'armclang-update-version-computation' into release-3.26 Merge-request: !8636 18 July 2023, 17:31:12 UTC
65fac2f ARMClang: Fix computation of compiler semantic version patch level According to ARMClang documentation 6.20, the patch version number should not include the last two digits of `__ARMCOMPILER_VERSION`, which are reserved for internal use by ARM. 18 July 2023, 17:29:01 UTC
38737e3 Help: Mention imported config mapping in export() and install() docs Suggest the `CMAKE_MAP_IMPORTED_CONFIG_<CONFIG>` variable for mapping configurations of dependent projects to configurations exported by these commands. Issue: #25096 18 July 2023, 15:11:14 UTC
59ed193 Merge topic 'innosetup-component-install' into release-3.27 c80190c6ab InnoSetup: Always specify at least one component installation type Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8630 18 July 2023, 14:29:56 UTC
c80190c InnoSetup: Always specify at least one component installation type Inno Setup implicitly creates three installation types if none is specified in the script. This causes some component features (e.g. `REQUIRED`) to lose their functionality. Teach the generator to always specify a "custom" installation type when using components. Fixes: #25083 17 July 2023, 14:30:25 UTC
8bcba75 CMake 3.27.0-rc5 14 July 2023, 15:03:52 UTC
6cb2905 Merge topic 'FindProtobuf-version-schemes' into release-3.27 6e90d79577 FindProtobuf: Fix new version number scheme Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8629 14 July 2023, 15:03:09 UTC
6e90d79 FindProtobuf: Fix new version number scheme Revise the changes from commit fc7dcc6a24 (FindProtobuf: Support new version number scheme, 2023-06-19, v3.27.0-rc3~2^2). Changing the content of `Protobuf_VERSION` to exclude the major version of the library might break code as it can't be used to detect breaking changes in the library any more. However, protoc v22 and up don't print the major version any more, so we need to compare the against a truncated version number, too. 14 July 2023, 13:34:13 UTC
1f42b02 Merge topic 'doc-list-genex' into release-3.27 326a73a328 Help: Improve formatting and wording of LIST generator expressions Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8621 14 July 2023, 12:38:03 UTC
6b62715 Merge topic 'doc-search-names' into release-3.27 094c5a089d Utilities/Sphinx: Restore html search index link anchors Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8628 14 July 2023, 12:35:47 UTC
78363b4 Merge topic 'debugger-breakpoints' into release-3.27 60b6383993 Debugger: Always clear existing breakpoints on setBreakpoints Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8624 14 July 2023, 12:34:29 UTC
dbbbedb Merge topic 'android-platform' into release-3.27 bfe4722a61 Android: Restore platform info and search paths shared with Linux Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8626 14 July 2023, 12:33:12 UTC
094c5a0 Utilities/Sphinx: Restore html search index link anchors Since commit 37e015d4a6 (Utilities/Sphinx: Refactor Sphinx reference recording, 2023-03-08, v3.27.0-rc1~342^2~1), anchors in links to cmake domain objects generated in html search results were missing their object type prefix, and thus did not link to the object. Restore our `get_objects` implementation's second tuple entry to what we used prior to that commit. This matches what Sphinx's builtin python, rst, and javascript modes do. Fixes: #25067 13 July 2023, 16:16:39 UTC
326a73a Help: Improve formatting and wording of LIST generator expressions 13 July 2023, 12:46:14 UTC
60b6383 Debugger: Always clear existing breakpoints on setBreakpoints Fixes: #25063 13 July 2023, 12:44:52 UTC
d769c59 Merge topic 'debugger-no-supportsVariableType' into release-3.27 e02cf3f190 Debugger: Correctly handle clients without supportsVariableType Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Acked-by: Garrett Campbell <gcampbell@microsoft.com> Merge-request: !8620 13 July 2023, 12:36:24 UTC
c6ce757 Merge topic 'doc-genex-TARGET_IMPORT_FILE' into release-3.27 69bc89758f Help: Fix typos, formatting and wording for TARGET_IMPORT_FILE genexes 9c0c844fbd Help: Add TARGET_IMPORT_FILE... genexes to 3.27 release notes 88277d15e7 Help: Add missing versionadded for TARGET_IMPORT_FILE_DIR genex Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8625 13 July 2023, 12:35:16 UTC
91333f1 Merge topic 'genex-REMOVE_DUPLICATES-empty' into release-3.27 861dd60ecf Genex: Restore REMOVE_DUPLICATES preservation of empty elements Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8623 13 July 2023, 12:34:21 UTC
937fa28 Merge topic 'show_autogen_exit_code' into release-3.27 bddd8f0e54 cmWorkerPool: Show process exit code / signal number upon failure Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8622 13 July 2023, 12:33:30 UTC
bfe4722 Android: Restore platform info and search paths shared with Linux These were accidentally dropped by commit 1373373823 (enable_language: Establish target platform identification variables earlier, 2023-06-06, v3.27.0-rc1~3^2~1). Fixes: #25077 13 July 2023, 12:19:15 UTC
69bc897 Help: Fix typos, formatting and wording for TARGET_IMPORT_FILE genexes 12 July 2023, 23:28:58 UTC
9c0c844 Help: Add TARGET_IMPORT_FILE... genexes to 3.27 release notes Fixes: #25060 12 July 2023, 23:27:28 UTC
88277d1 Help: Add missing versionadded for TARGET_IMPORT_FILE_DIR genex Issue: #25060 12 July 2023, 23:16:28 UTC
861dd60 Genex: Restore REMOVE_DUPLICATES preservation of empty elements Refactoring in commit 72d116ee68 (GenEx: list oriented genexes use cmList class, 2023-03-29, v3.27.0-rc1~205^2) accidentally caused empty elements to be dropped by the `REMOVE_DUPLICATES` genex. Fix it and add a test case. Fixes: #25080 12 July 2023, 15:49:21 UTC
bddd8f0 cmWorkerPool: Show process exit code / signal number upon failure Previously if an AUTOGEN process like moc exited with a non-zero exit code, cmWorkerPool would not populate the result's ErrorMessage because it mistakenly thought that if the ExitCode / TermSignal had a non-zero value, the ErrorMessage must have already been set. This was a wrong assumption. Instead, check if ErrorMessage is empty, and if it is, set it to whatever the exit code or term signal number is. 12 July 2023, 14:29:49 UTC
e02cf3f Debugger: Correctly handle clients without supportsVariableType Fixes: #25057 12 July 2023, 14:09:21 UTC
fbe5f49 Merge topic 'compile-commands-modules' into release-3.27 677b28dc7b Ninja: include module mapper flags in `compile_commands.json` Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8611 12 July 2023, 14:02:52 UTC
bab2a62 Merge topic 'hip-vim-syntax' into release-3.27 90a949f7ce HIP: Add HIP language to Vim syntax highlighting Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8615 11 July 2023, 16:10:32 UTC
677b28d Ninja: include module mapper flags in `compile_commands.json` Fixes: #24618 09 July 2023, 15:04:29 UTC
90a949f HIP: Add HIP language to Vim syntax highlighting The HIP language shares most properties in common with CXX or CUDA, although there are a few from each that it doesn't share. 07 July 2023, 14:29:39 UTC
cd70f0f Merge topic 'findprotobuf-mingw' into release-3.27 e978b3b814 FindProtobuf: Fix linking to shared libraries on MinGW Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8609 07 July 2023, 14:29:30 UTC
64e66b4 Merge topic 'msvc-embed-manifest-direct' into release-3.27 8a07bcc149 MSVC: Restore support for non-incremental linking without 'rc' in PATH Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8613 07 July 2023, 14:28:36 UTC
c868302 Merge topic 'hip-lib64' into release-3.27 f79428619e HIP: Fix search for hip-lang CMake package on Fedora distros Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8614 07 July 2023, 14:27:18 UTC
8a07bcc MSVC: Restore support for non-incremental linking without 'rc' in PATH Since commit 0b552eb877 (MSVC: Embed manifests directly for non-incremental vs_link_exe links, 2023-02-20, v3.27.0-rc1~438^2) we tell the MSVC `link` tool to embed manifests directly rather than running `mt` ourselves. However, `link` expects `rc` to be in the PATH when embedding manifests. Although that is normally true, some users prepare minimal environments and explicitly specify include and link directories for the Windows SDK. In such cases, `rc` is not in the PATH and is explicitly specified in `CMAKE_RC_COMPILER`. Restore support for such cases by explicitly adding the RC location to the end of the PATH. Fixes: #25047 06 July 2023, 12:11:34 UTC
f794286 HIP: Fix search for hip-lang CMake package on Fedora distros These distros package the hip-lang package under `lib64`, so search it too. This is similar to commit bae57dc281 (HIP: Fix search for hip-lang CMake package on multiarch distros, 2023-05-31, v3.27.0-rc1~28^2). Fixes: #25050 05 July 2023, 16:37:34 UTC
e978b3b FindProtobuf: Fix linking to shared libraries on MinGW Fixes: #25011 05 July 2023, 12:25:01 UTC
b384058 CMake 3.27.0-rc4 30 June 2023, 14:31:40 UTC
1cc4e97 Merge topic 'debugger-segfault' into release-3.27 764258771a Debugger: Fix threads request segfault after thread exited event Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8604 30 June 2023, 13:30:20 UTC
1ac0dea Merge topic 'FetchContent-unparsed-arguments' into release-3.27 9ede4cab2b FetchContent: Protect ExternalProject keywords from unknown arguments Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Acked-by: Craig Scott <craig.scott@crascit.com> Merge-request: !8598 30 June 2023, 13:29:27 UTC
67cf379 Merge topic 'vs-cxxmodules-same-src-name' into release-3.27 b9c99830c5 VS: Fix C++ modules in source files with the same name Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8596 30 June 2023, 13:28:19 UTC
7642587 Debugger: Fix threads request segfault after thread exited event Fixes: #25041 29 June 2023, 17:25:51 UTC
7952e11 Merge topic 'doc-add_custom_command' into release-3.27 e588d29eaf Help: add_custom_command(TARGET) does not support USES_TERMINAL Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: William Jones <william.luke.jones@gmail.com> Merge-request: !8602 29 June 2023, 15:49:34 UTC
e588d29 Help: add_custom_command(TARGET) does not support USES_TERMINAL Build events are attached to existing build statements so we cannot independently control the job pool. Issue: #25040 29 June 2023, 14:57:38 UTC
back to top