https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
788c204 CMake 3.29.0-rc4 14 March 2024, 17:33:17 UTC
e497fbf Merge topic 'Apple-TBD-in-subdirecory' into release-3.29 bcc26ce465 Apple Text Based Stubs: should be usage in subdirectories Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9341 14 March 2024, 17:31:10 UTC
3e90c88 Merge branch 'release-3.28' into release-3.29 14 March 2024, 15:47:48 UTC
742af6c Merge topic 'autogen-makefile-depfile' into release-3.29 d2d1763f88 cmQtAutoGenInitializer: De-duplicate autogen/timestamp target depend logic 6193d15556 Autogen: Restore target-ordering dependencies in Makefiles with DEPFILE Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9340 14 March 2024, 15:46:53 UTC
8ebdee9 Merge topic 'autogen-makefile-depfile' into release-3.28 d2d1763f88 cmQtAutoGenInitializer: De-duplicate autogen/timestamp target depend logic 6193d15556 Autogen: Restore target-ordering dependencies in Makefiles with DEPFILE Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9340 14 March 2024, 15:46:08 UTC
8f0801c Merge topic 'LINKER_TYPE-mold-support' into release-3.29 801ae06952 LINKER_TYPE: Support MOLD only on GCC versions that support it 939ac5287e LINKER_TYPE: fix spelling error in message 922883782b LINKER_TYPE: Document that linker tool should be in the PATH Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9334 14 March 2024, 15:45:13 UTC
d93a7c1 Merge topic 'fc-MakeAvailable-leak-var' into release-3.29 2b68048bdb FetchContent: Don't leak temporary variable and restore var robustly Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !9338 14 March 2024, 15:44:00 UTC
bcc26ce Apple Text Based Stubs: should be usage in subdirectories Fixes: #25765 14 March 2024, 13:33:48 UTC
d2d1763 cmQtAutoGenInitializer: De-duplicate autogen/timestamp target depend logic We place the same target ordering dependencies on either the `_autogen_timestamp_deps` target or the `_autogen` target. Refactor the logic to avoid duplicating that code. 14 March 2024, 13:18:56 UTC
6193d15 Autogen: Restore target-ordering dependencies in Makefiles with DEPFILE In commit aebfbcaa46 (AutoGen: Use depfiles for the XXX_autogen ninja targets, 2020-01-14, v3.17.0-rc1~58^2) the `_autogen_timestamp_deps` target was given target ordering dependencies through its custom command rather than direct target dependencies as on the `_autogen` target. Then commit 895fa3433f (cmQtAutoGenInitializer: support IMPLIB-only imported targets, 2021-09-23, v3.22.0-rc1~80^2) converted some target-level dependencies into file-level dependencies on the custom command. This only works with a monolithic build graph like Ninja. Since commit ebc9e448b3 (Autogen: Add depfile support for Makefiles, 2023-09-07, v3.28.0-rc1~101^2~1) we use the `_autogen_timestamp_deps` target in Makefile generators too. This exposed the missing target ordering dependency. Fixes: #25766 14 March 2024, 13:05:06 UTC
801ae06 LINKER_TYPE: Support MOLD only on GCC versions that support it Fixes: #25748 13 March 2024, 15:13:21 UTC
886333d Merge topic 'export-find_dependency-calls' into release-3.29 3a739d4dcb EXPORT_PACKAGE_DEPENDENCIES: Add experimental feature gate Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9336 13 March 2024, 14:57:07 UTC
3d67b5a Merge branch 'release-3.28' into release-3.29 13 March 2024, 14:52:47 UTC
7a9fc8c Merge topic 'backport-3.28-ci-xcode-15.3' into release-3.28 8a6d05aa9d gitlab-ci: update macOS jobs to use Xcode 15.3 7bf893bc30 Tests: Update RunCMake.CheckCompilerFlag for Xcode 15.3 7f5f0ab4b3 Tests: Update RunCMake.CompileFeatures for Xcode 15.3 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9333 13 March 2024, 14:52:15 UTC
be27ce8 Merge topic 'ci-xcode-15.3' into release-3.29 682767e8a5 Merge branch 'backport-3.28-ci-xcode-15.3' e572986231 LinkerId: Update detection of linker tool for Xcode 15.3 8a6d05aa9d gitlab-ci: update macOS jobs to use Xcode 15.3 7bf893bc30 Tests: Update RunCMake.CheckCompilerFlag for Xcode 15.3 7f5f0ab4b3 Tests: Update RunCMake.CompileFeatures for Xcode 15.3 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9333 13 March 2024, 14:51:11 UTC
2b68048 FetchContent: Don't leak temporary variable and restore var robustly In FetchContent_MakeAvailable(), the __fcprefix__ previously used when pushing the value of CMAKE_EXPORT_FIND_PACKAGE_NAME to the variable stack is not needed. The stack will never be empty at that point, so pushing an empty value will be handled correctly. By removing the __fcprefix__, we no longer need any temporary variable when restoring CMAKE_EXPORT_FIND_PACKAGE_NAME. But we need to ensure CMAKE_EXPORT_FIND_PACKAGE_NAME is left undefined if it wasn't defined before, and pushing an empty value doesn't let us distinguish between unset and set-but-empty. Therefore, when CMAKE_EXPORT_FIND_PACKAGE_NAME is undefined, push a specific value that can't be used by the project instead and check for that when popping it again. This ensures we can robustly distinguish the two cases and will always restore the right state. Fixes: #25758 13 March 2024, 06:27:18 UTC
3a739d4 EXPORT_PACKAGE_DEPENDENCIES: Add experimental feature gate Some design concerns have been raised after trying the 3.29 release candidates. Avoid committing to a stable public interface for now. Issue: #25767 12 March 2024, 18:24:53 UTC
939ac52 LINKER_TYPE: fix spelling error in message 12 March 2024, 17:18:25 UTC
682767e Merge branch 'backport-3.28-ci-xcode-15.3' 12 March 2024, 13:49:17 UTC
e572986 LinkerId: Update detection of linker tool for Xcode 15.3 Xcode now prints extra `ExecuteExternalTool` lines that happen to mention the linker tool, but not in conjunction with actually linking something. Ignore them. 12 March 2024, 13:48:01 UTC
8a6d05a gitlab-ci: update macOS jobs to use Xcode 15.3 12 March 2024, 13:29:45 UTC
7bf893b Tests: Update RunCMake.CheckCompilerFlag for Xcode 15.3 Xcode passes a new `-use-frontend-parseable-output` flag to Swift that conflicts with our `-parseable-output` flag. Use a different flag for the test case. 12 March 2024, 13:29:45 UTC
7f5f0ab Tests: Update RunCMake.CompileFeatures for Xcode 15.3 Xcode no longer puts an extra backslash in its `-std=` flags. 12 March 2024, 13:29:29 UTC
9228837 LINKER_TYPE: Document that linker tool should be in the PATH Issue: #25748 12 March 2024, 13:00:49 UTC
3677b2d Merge topic 'export-find_dependency-calls' into release-3.29 b1c4806914 install(EXPORT): Drop REQUIRED from exported find_dependency calls Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !9329 12 March 2024, 12:43:24 UTC
b1c4806 install(EXPORT): Drop REQUIRED from exported find_dependency calls In commit c6e6861e63 (install(EXPORT): Export find_dependency() calls, 2023-11-07, v3.29.0-rc1~439^2~1) we made the calls `REQUIRED`. However, a dependency is only required if the dependent package is required. `find_dependency` already forwards the `REQUIRED` mark, and also already marks the dependent package as not found if the dependency is missing. Fixes: #25756 11 March 2024, 16:07:32 UTC
04d8bc6 Merge topic 'ctest-j-default' into release-3.29 5de1e21659 ctest: Allow passing -j without value to choose a contextual default bbcbcff7d9 cmCTestMultiProcessHandler: Modernize member initialization 7457b474a1 Tests: Remove unnecessary parallel suppression from CTestCoverageCollectGCOV ae69801d96 Tests: Convert CTestTestSkipReturnCode to RunCMake.ctest_test case 30dda49416 Tests: Convert CTestTestSerialOrder to RunCMake.ctest_test case Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Acked-by: scivision <michael@scivision.dev> Merge-request: !9315 11 March 2024, 14:18:49 UTC
da334e2 Merge topic 'ctest-tests-from-file' into release-3.29 170ec48601 Help: Improve ctest tests-from-file documentation wording and wrapping 1a4837641e ctest: Remove unnecessary and ambiguous tests-from-file comment syntax d52c66bfb3 ctest: Honor tests-from-file options with empty input 8673264e25 Tests: Make ctest tests-from-file expected output more precise Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9322 11 March 2024, 14:16:59 UTC
d914c76 Merge topic 'llvm-objdump' into release-3.29 c51f84b96a GET_RUNTIME_DEPENDENCIES: Allow more whitespace before objdump's "DLL Name:" Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9325 11 March 2024, 14:15:16 UTC
a22245a Merge topic 'marmasm-language' into release-3.29 c34ef6c922 ASM_MARMASM: Remove broken partial support for preprocessor defines Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9326 11 March 2024, 14:10:55 UTC
5de1e21 ctest: Allow passing -j without value to choose a contextual default Under job server integration, added by commit 80fe56c481 (ctest: Add support for running under a make job server on POSIX systems, 2023-11-15, v3.29.0-rc1~324^2), use a very high default so that parallelism is effectively limited only by available job server tokens. Otherwise, choose a default limit based on the number of processors. Also allow passing `0` to specify unbounded parallelism. Fixes: #25739 10 March 2024, 15:41:39 UTC
c34ef6c ASM_MARMASM: Remove broken partial support for preprocessor defines Avoid passing unsupported options to the assembler. In commit 3166547cf6 (ASM_MARMASM: Add support for Microsoft ARM assembler language, 2022-10-14, v3.26.0-rc1~383^2) we copied the assembler command line from `CMakeASM_MASMInformation`, but the `marmasm` tool does not accept `-D` command-line options. Issue: #24317 10 March 2024, 15:20:20 UTC
c51f84b GET_RUNTIME_DEPENDENCIES: Allow more whitespace before objdump's "DLL Name:" LLVM's `llvm-objdump` has spaces before "DLL Name:" instead of tabs. 10 March 2024, 15:03:21 UTC
bbcbcff cmCTestMultiProcessHandler: Modernize member initialization 10 March 2024, 14:27:05 UTC
7457b47 Tests: Remove unnecessary parallel suppression from CTestCoverageCollectGCOV This hasn't been necessary since commit ab7eda2591 (Tests: Remove unnecessary pass regex on CTestCoverageCollectGCOV, 2020-04-29, v3.18.0-rc1~239^2~2). 10 March 2024, 14:27:02 UTC
ae69801 Tests: Convert CTestTestSkipReturnCode to RunCMake.ctest_test case 10 March 2024, 14:26:14 UTC
30dda49 Tests: Convert CTestTestSerialOrder to RunCMake.ctest_test case 10 March 2024, 14:24:50 UTC
170ec48 Help: Improve ctest tests-from-file documentation wording and wrapping 08 March 2024, 21:26:12 UTC
1a48376 ctest: Remove unnecessary and ambiguous tests-from-file comment syntax Test names can contain `#`. Since we ignore lines that do not match any test names anyway, "commenting" can still work without explicit syntax. Also drop whitespace trimming for similar reasons. Fixes: #25741 08 March 2024, 21:25:33 UTC
d52c66b ctest: Honor tests-from-file options with empty input If the `--tests-from-file` input file is empty, no tests should run. 08 March 2024, 21:06:35 UTC
8673264 Tests: Make ctest tests-from-file expected output more precise 08 March 2024, 21:03:48 UTC
5c35123 Merge branch 'release-3.28' into release-3.29 08 March 2024, 14:33:24 UTC
74d3765 Merge topic 'cxxmodules-target-objects' into release-3.29 4ddf0453d5 Tests/CXXModules: add a test using `TARGET_OBJECTS` from modules Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9316 08 March 2024, 14:32:36 UTC
9bfb972 Merge topic 'cxxmodules-target-objects' into release-3.28 4ddf0453d5 Tests/CXXModules: add a test using `TARGET_OBJECTS` from modules Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9316 08 March 2024, 14:32:01 UTC
23e7c9a Merge topic 'doc-https' into release-3.29 53a542936e Help: Convert http URLs to https Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9313 08 March 2024, 14:30:12 UTC
d68cf15 Merge topic 'ctest-tests-from-file' into release-3.29 ca0a9def2e ctest: Exit with failure when tests-from-file input is missing 60433fc6e8 Tests: Generalize ctest tests-from-file test cases Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9317 08 March 2024, 14:28:44 UTC
53a5429 Help: Convert http URLs to https 07 March 2024, 14:42:45 UTC
ca0a9de ctest: Exit with failure when tests-from-file input is missing If the options added by * commit 022f20f663 (ctest: add command line option to run the tests listed in a given file, 2023-11-29, v3.29.0-rc1~66^2~2) * commit dbacc1d5a8 (ctest: add command line option to exclude tests listed in a given file, 2023-11-30, v3.29.0-rc1~66^2~1) * commit 701029726f (ctest_test: add options INCLUDE_FROM_FILE and EXCLUDE_FROM_FILE, 2023-12-03, v3.29.0-rc1~66^2) are given a missing file, fail instead of ignoring it. Fixes: #25740 06 March 2024, 21:14:04 UTC
60433fc Tests: Generalize ctest tests-from-file test cases 06 March 2024, 18:34:10 UTC
4ddf045 Tests/CXXModules: add a test using `TARGET_OBJECTS` from modules See: #25732 06 March 2024, 17:34:46 UTC
dd8e84a Merge topic 'FindRuby-3.3' into release-3.29 c2bf3e46fa FindRuby: Fix finding Ruby 3.1+ on Windows 867550db43 FindRuby: Add support for 3.3 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9309 06 March 2024, 14:00:19 UTC
c2bf3e4 FindRuby: Fix finding Ruby 3.1+ on Windows It switched to the UCRT C runtime. 05 March 2024, 13:47:59 UTC
867550d FindRuby: Add support for 3.3 05 March 2024, 13:46:29 UTC
965acca CMake 3.29.0-rc3 04 March 2024, 18:58:26 UTC
68240e7 Merge branch 'release-3.28' into release-3.29 04 March 2024, 15:21:32 UTC
37ddb04 Merge topic 'cxxmodules-invalid-iterator' into release-3.29 844f054fe0 cmImportedCxxModuleInfo: remove unused pointer field Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9303 04 March 2024, 15:20:47 UTC
944f10d Merge topic 'cxxmodules-invalid-iterator' into release-3.28 844f054fe0 cmImportedCxxModuleInfo: remove unused pointer field Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9303 04 March 2024, 15:19:34 UTC
844f054 cmImportedCxxModuleInfo: remove unused pointer field Also avoids usage of an invalid `importit` when module names are not available. 01 March 2024, 16:23:44 UTC
4c0ea43 Merge branch 'release-3.28' into release-3.29 01 March 2024, 14:00:38 UTC
e80ad58 Merge topic 'FindTIFF-cmake-package' into release-3.29 b6b2f73f36 FindTIFF: Fix name of upstream TIFF cmake package Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9300 01 March 2024, 13:59:50 UTC
d16ac6f Merge topic 'FindTIFF-cmake-package' into release-3.28 b6b2f73f36 FindTIFF: Fix name of upstream TIFF cmake package Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9300 01 March 2024, 13:59:04 UTC
b6b2f73 FindTIFF: Fix name of upstream TIFF cmake package Since commit 6a3059e66f (FindTIFF: bridge `tiff-config` into FindTIFF-compatible interface, 2023-09-14, v3.28.0-rc1~87^2) we try to find the upstream TIFF cmake package. However, it is called `TiffConfig.cmake`, not `tiff-config.cmake`, so we need to match the capitalization of the package name. 29 February 2024, 13:47:53 UTC
966e6af Merge branch 'release-3.28' into release-3.29 29 February 2024, 13:05:33 UTC
cb2dc01 Merge topic 'cxxmodules-no-export-basedirs-as-include-paths' into release-3.29 65bd837786 Merge branch 'backport-3.28-cxxmodules-no-export-basedirs-as-include-paths' 028f3134e5 cmExportFileGenerator: only export include paths for HEADERS file sets Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !9295 29 February 2024, 13:02:28 UTC
81a8cf2 Merge topic 'cxxmodules-no-export-basedirs-as-include-paths' into release-3.28 028f3134e5 cmExportFileGenerator: only export include paths for HEADERS file sets Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9295 29 February 2024, 13:01:22 UTC
8a0d42d Merge topic 'Help-add_custom_command-grammo' into release-3.29 b03356f954 Help/add_custom_command: fix verb grammo Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9297 29 February 2024, 12:59:27 UTC
d00af79 Merge branch 'release-3.28' into release-3.29 28 February 2024, 20:02:36 UTC
7f2275c Merge topic 'test-cxxmodules-vs' into release-3.29 6925978f3e Tests/RunCMake/CXXModules: Update VS circular error message Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9299 28 February 2024, 20:01:36 UTC
6fa3cf4 Merge topic 'test-cxxmodules-vs' into release-3.28 6925978f3e Tests/RunCMake/CXXModules: Update VS circular error message Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9299 28 February 2024, 20:01:06 UTC
6925978 Tests/RunCMake/CXXModules: Update VS circular error message Match the message expected from MSBuild as of VS 17.9. 28 February 2024, 19:16:20 UTC
b03356f Help/add_custom_command: fix verb grammo 28 February 2024, 18:21:52 UTC
65bd837 Merge branch 'backport-3.28-cxxmodules-no-export-basedirs-as-include-paths' 28 February 2024, 14:20:15 UTC
028f313 cmExportFileGenerator: only export include paths for HEADERS file sets 28 February 2024, 10:26:10 UTC
5ac8368 Merge topic 'Help-file-ARCHIVE_EXTRACT-mention-working-dir' into release-3.29 189d28d77d Help/file: mention the working directory for `ARCHIVE_EXTRACT` Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9291 27 February 2024, 14:11:42 UTC
fe82cd6 Merge branch 'release-3.28' into release-3.29 27 February 2024, 14:08:02 UTC
4ff4417 Merge topic 'cxxmodules-fileset-cache-fullpath' into release-3.29 0a18f9baad cmGeneratorTarget: collapse paths before querying the fileset cache Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9286 27 February 2024, 14:06:24 UTC
9b4bbd2 Merge topic 'clang-use-arg1' into release-3.29 7008fc234b CMakeDetermineCompilerId: use `_ARG1` to query the clang resource dir Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9285 27 February 2024, 14:05:12 UTC
febe479 Merge topic 'cxxmodules-fileset-cache-fullpath' into release-3.28 0a18f9baad cmGeneratorTarget: collapse paths before querying the fileset cache Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9286 27 February 2024, 14:02:54 UTC
5feddb6 Merge topic 'clang-use-arg1' into release-3.28 7008fc234b CMakeDetermineCompilerId: use `_ARG1` to query the clang resource dir Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9285 27 February 2024, 14:02:27 UTC
189d28d Help/file: mention the working directory for `ARCHIVE_EXTRACT` See: https://discourse.cmake.org/t/10135 27 February 2024, 10:53:08 UTC
7008fc2 CMakeDetermineCompilerId: use `_ARG1` to query the clang resource dir Other core queries do this, so do it here too. 26 February 2024, 16:49:17 UTC
083afc8 Merge topic 'swift-exe-module-name' into release-3.29 f292e28b84 Swift: Ninja: Pass module name to all swift builds Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9282 26 February 2024, 15:19:21 UTC
2c69f8a Merge topic 'FindOpenSSL-SLP-layout' into release-3.29 1327e0ff75 FindOpenSSL: Update layout for Shining Light Productions package on Windows Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9283 26 February 2024, 15:18:17 UTC
db5d798 Merge topic 'FindOpenMP-intel-oneapi-windows' into release-3.29 6c09451ed3 ci: Enable FindOpenMP tests in Intel nightly CI jobs on Windows d427bfae61 FindOpenMP: Restore support for Intel compilers on Windows Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9284 26 February 2024, 15:17:13 UTC
0a18f9b cmGeneratorTarget: collapse paths before querying the fileset cache Observed with paths with `../` when outside of the source tree. I attempted to reproduce a test suite case for it but could not make it happen. 24 February 2024, 22:17:39 UTC
f292e28 Swift: Ninja: Pass module name to all swift builds Executables that don't export a public API should not emit a swiftmodule, but the swift modulename is observable from within the program, so we should still set the module name on executable builds. Fixes: #25710 23 February 2024, 16:12:05 UTC
6c09451 ci: Enable FindOpenMP tests in Intel nightly CI jobs on Windows 23 February 2024, 14:37:06 UTC
d427bfa FindOpenMP: Restore support for Intel compilers on Windows Fix the condition added by commit 3019af64c2 (FindOpenMP: Add support for GNU-like Clang targeting MSVC ABI, 2024-02-08, v3.29.0-rc1~8^2~1) to be more specific. Fixes: #25711 23 February 2024, 14:37:03 UTC
1327e0f FindOpenSSL: Update layout for Shining Light Productions package on Windows Fixes: #25702 23 February 2024, 13:46:11 UTC
9cd3415 Merge topic 'doc-create_test_sourcelist' into release-3.29 2c646641ec Help: Document create_test_sourcelist source path convention c21f0eb30b Help: Modernize create_test_sourcelist documentation Acked-by: Kitware Robot <kwrobot@kitware.com> Reviewed-by: Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !9281 23 February 2024, 12:41:27 UTC
dc45b20 CMake 3.29.0-rc2 22 February 2024, 14:40:22 UTC
2c64664 Help: Document create_test_sourcelist source path convention Document the change in commit a29ca55b1f (create_test_sourcelist: use the full path to the driver, 2023-12-09, v3.29.0-rc1~264^2). 22 February 2024, 14:37:23 UTC
c21f0eb Help: Modernize create_test_sourcelist documentation 22 February 2024, 14:32:00 UTC
2f91902 Merge branch 'release-3.28' into release-3.29 22 February 2024, 13:29:31 UTC
6ea634d Merge topic 'doc-BUILD_SHARED_LIBS-top-level' into release-3.29 fb14a54a25 Help: Advise calling option(BUILD_SHARED_LIBS) early enough Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9280 22 February 2024, 13:28:41 UTC
63600a8 Merge topic 'test-BuildDepends-no-rosetta' into release-3.29 6b8c99a1e3 Tests: Fix BuildDepends on macOS arm64 without rosetta Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9277 22 February 2024, 13:27:23 UTC
312d0cc Merge topic 'restore-link-interface-objlib-with-unity' into release-3.29 5b8e9e068f Restore support for TARGET_OBJECTS in link interfaces with unity builds 1313c78a9c Tests: Update RunCMake.TargetObjects cmake_minimum_required version Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !9279 22 February 2024, 13:26:11 UTC
a4122c8 Merge topic 'cxxmodules-clang-resource-dir' into release-3.29 a3ada1a241 Clang: detect -resource-dir for clang-scan-deps Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9274 22 February 2024, 13:23:58 UTC
e98cbbf Merge topic 'restore-link-interface-objlib-with-unity' into release-3.28 5b8e9e068f Restore support for TARGET_OBJECTS in link interfaces with unity builds 1313c78a9c Tests: Update RunCMake.TargetObjects cmake_minimum_required version Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9279 22 February 2024, 13:23:46 UTC
1371a28 Merge topic 'cxxmodules-clang-resource-dir' into release-3.28 a3ada1a241 Clang: detect -resource-dir for clang-scan-deps Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9274 22 February 2024, 13:22:49 UTC
back to top