summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* IWYU: Add mapping for 'std::remove_reference<Defer &>::type'Brad King2023-04-051-0/+1
| | | | | | | IWYU sometimes thinks that `cmCMakeLanguageCommand.cxx` mentions this type and suggests including `<type_traits>` for it. The type is only used internally by standard library functions. Work around the problem by mapping the offending name to a file that we always include.
* CMake Nightly Date StampKitware Robot2023-04-031-1/+1
|
* CMake Nightly Date StampKitware Robot2023-04-021-1/+1
|
* CMake Nightly Date StampKitware Robot2023-04-011-1/+1
|
* Merge topic 'automoc-cxx-standard'Brad King2023-03-3111-26/+142
|\ | | | | | | | | | | | | | | 429a452705 Autogen: Add target's C++ standard to moc_predef.h 21f812e57c Autogen: Split creation and setup of custom targets into separate steps Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8359
| * Autogen: Add target's C++ standard to moc_predef.hOrkun Tokdemir2023-03-307-1/+130
| | | | | | | | | | | | | | | | | | Generate `moc_predef.h` using the same C++ standard level that will be used to compile the target so that the compiler's predefined macros can be more accurately recovered. Fixes: #24624 Qt-Issue: https://bugreports.qt.io/browse/QTBUG-110847
| * Autogen: Split creation and setup of custom targets into separate stepsOrkun Tokdemir2023-03-244-25/+12
| | | | | | | | | | | | | | Defer the setup step until after compile features have been finalized on normal targets. Later this will help pass the information to Qt tools. Issue: #24624
* | Merge topic 'remove-FindPythonInterp-FindPythonLibs'Brad King2023-03-3138-0/+228
|\ \ | | | | | | | | | | | | | | | | | | | | | a4c5b91f80 FindPython{Interp,Libs}: Add policy to remove these modules Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: scivision <michael@scivision.dev> Merge-request: !8380
| * | FindPython{Interp,Libs}: Add policy to remove these modulesBrad King2023-03-3038-0/+228
| | | | | | | | | | | | | | | | | | The `FindPythonInterp` and `FindPythonLibs` modules have been deprecated since CMake 3.12. Add a policy to pretend they do not exist in order to encourage projects to port to `FindPython` or `FindPython{2,3}`.
* | | Merge topic 'ci-FindHDF5'Brad King2023-03-317-1/+89
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 75bb2a2ee4 Tests: Extend FindHDF5 tests to link and run executables 919de8785b ci: Patch HDF5 Fortran compiler wrappers in Fedora jobs Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8381
| * | | Tests: Extend FindHDF5 tests to link and run executablesBrad King2023-03-305-0/+83
| | | | | | | | | | | | | | | | Verify that this works using both targets and variables.
| * | | ci: Patch HDF5 Fortran compiler wrappers in Fedora jobsBrad King2023-03-302-1/+6
| |/ / | | | | | | | | | | | | | | | | | | In Fedora's HDF5 packages for OpenMPI and MPICH, the `h5pfc` compiler wrappers for Fortran use the wrong search path for their Fortran modules. Patch them locally in CI jobs until it is fixed in Fedora upstream.
* | | Merge topic 'cuda-arch-nvcc-options-file'Brad King2023-03-311-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6546da83b3 CUDA: Fix CUDA architecture flags for nvcc response files Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Robert Maynard <robertjmaynard@gmail.com> Merge-request: !8379
| * | | CUDA: Fix CUDA architecture flags for nvcc response filesBrad King2023-03-301-2/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | `nvcc --options-file` does not parse unquoted arguments in a response file correctly if they contain `[]`. Quote the `--generate-code=` flags we add for CUDA architectures. Fixes: #24657
* | | Merge topic 'presets-add-trace'Brad King2023-03-3128-46/+455
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8e579b0228 presets: Add trace options to configure presets Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8254
| * | | presets: Add trace options to configure presetsArtin Alavi2023-03-3028-46/+455
| |/ / | | | | | | | | | | | | | | | Add JSON schema version 7 to support them. Fixes: #22543
* | | Merge topic 'strip-macos'Brad King2023-03-314-9/+51
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 689616785f macOS: Do not pass Apple-specific flags to llvm-strip Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8374
| * | | macOS: Do not pass Apple-specific flags to llvm-stripBrad King2023-03-294-9/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit cf82300a63 (BinUtils: Clarify search logic and make it more consistent, 2021-05-27, v3.21.0-rc1~119^2~2) we prefer `llvm-strip` over `strip` when using Clang. However, since commit 20291e8e72 (install: Fix stripping on macOS, 2019-01-30, v3.14.0-rc1~31^2) on macOS we add flags `-u -r`, needed by Apple's `strip` for executables, but that `llvm-strip` does not need or support. Improve the condition to add Apple-specific flags only when the selected `strip` tool is Apple's. Note that Apple dylibs must be stripped with `-x` with either Apple's `strip` or `llvm-strip`. Fixes: #24601
* | | | Merge topic 'binutils-strip-macos'Brad King2023-03-311-1/+9
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ac2562afb3 BinUtils: Avoid llvm-strip on Apple platforms Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8372
| * | | | BinUtils: Avoid llvm-strip on Apple platformsBrad King2023-03-301-1/+9
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit cf82300a63 (BinUtils: Clarify search logic and make it more consistent, 2021-05-27, v3.21.0-rc1~119^2~2) we prefer `llvm-strip` over `strip` when using Clang. However, `llvm-strip` seems to produce unusable binaries in cases involving chained fixups. Prefer Apple's `strip` over `llvm-strip` on `APPLE` platforms. We still need to consider `llvm-strip` as a fallback as explained for `llvm-ar` by commit fee36b7a78 (BinUtils: Restore llvm-ar fallback on Apple platforms, 2022-03-15, v3.23.0-rc4~12^2). Issue: #24601
* | | | CMake Nightly Date StampKitware Robot2023-03-311-1/+1
| |/ / |/| |
* | | Merge topic 'presets-json-errors'Brad King2023-03-30114-1213/+1930
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 19305afd8a presets: Improve JSON parser and error messages Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Acked-by: scivision <michael@scivision.dev> Merge-request: !8290
| * | | presets: Improve JSON parser and error messagesMartin Duffy2023-03-29114-1213/+1930
| | | |
* | | | Merge topic 'ci-FindHDF5'Brad King2023-03-3013-23/+234
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d38c752de2 ci: Enable FindHDF5 tests on Linux builds 28c4945a8a ci: Add HDF5 to Debian and Fedora base images ad9e151045 Tests: Add cases covering FindHDF5 variables and imported targets 0e87e6c1a4 Tests: Add FindMPI test environment modification option ee075a53c8 FindHDF5: Record compiler wrapper checks to configure log 72915b1068 FindHDF5: Fix compiler wrapper checks with spaces in path Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8378
| * | | | ci: Enable FindHDF5 tests on Linux buildsBrad King2023-03-293-0/+44
| | | | |
| * | | | ci: Add HDF5 to Debian and Fedora base imagesBrad King2023-03-294-3/+12
| | | | |
| * | | | Tests: Add cases covering FindHDF5 variables and imported targetsBrad King2023-03-293-0/+143
| | | | |
| * | | | Tests: Add FindMPI test environment modification optionBrad King2023-03-293-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | Provide a way to configure an environment specific to this test. Avoid setting the environment globally for it in CI jobs.
| * | | | FindHDF5: Record compiler wrapper checks to configure logBrad King2023-03-291-9/+21
| | | | |
| * | | | FindHDF5: Fix compiler wrapper checks with spaces in pathBrad King2023-03-291-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some HDF5 compiler wrappers do not support source file paths that contain spaces. Pass source files to them using a file name in the current working directory to avoid spaces.
* | | | | Merge topic 'clang-tidy-module-gitignore'Brad King2023-03-301-0/+8
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 550f6b40bd clang-tidy module: copy .gitignore from top level Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8377
| * | | | | clang-tidy module: copy .gitignore from top levelKyle Edwards2023-03-291-0/+8
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | Since 8b094845, .gitignore entries have been pinned to the top-level .gitignore file. Copy these entries into a .gitignore for the clang-tidy module.
* | | | | Merge topic 'codespellrc-no-count'Brad King2023-03-301-1/+0
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c7d978d371 ci: remove "count =" from .codespellrc Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8376
| * | | | | ci: remove "count =" from .codespellrcKyle Edwards2023-03-291-1/+0
| |/ / / / | | | | | | | | | | | | | | | | | | | | Since 42445b2c, we've been printing a message for each invocation of codespell. The count print is redundant and clutters the log.
* | | | | Merge topic 'ninja-performance'Brad King2023-03-304-34/+22
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 426f3295f6 Ninja: Use more efficient data structures to collect outputs Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8371
| * | | | | Ninja: Use more efficient data structures to collect outputsNicolas van Kempen2023-03-284-34/+22
| | | | | |
* | | | | | Merge topic 'FindOpenAL-framework'Brad King2023-03-306-14/+26
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f05bd762f5 ci: Enable FindOpenAL test on macOS jobs 1d06554fc6 Tests: Fix FindOpenAL test for macOS framework 5f5476ee31 FindOpenAL: Fix imported target for macOS framework Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8373
| * | | | | | ci: Enable FindOpenAL test on macOS jobsnega2023-03-293-0/+3
| | | | | | |
| * | | | | | Tests: Fix FindOpenAL test for macOS frameworknega2023-03-292-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use framework-style includes. - Hush deprecation warnings when compiling test.
| * | | | | | FindOpenAL: Fix imported target for macOS frameworknega2023-03-291-12/+10
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | If a framework is found, specify it through `INTERFACE_LINK_LIBRARIES` because `IMPORTED_LOCATION` requires a file and not a framework directory.
* | | | | | CMake Nightly Date StampKitware Robot2023-03-301-1/+1
| |_|/ / / |/| | | |
* | | | | Merge branch 'release-3.26'Brad King2023-03-291-3/+3
|\ \ \ \ \
| * | | | | CMake 3.26.2v3.26.2Brad King2023-03-292-4/+4
| | | | | |
* | | | | | Merge topic 'install-namelink-no-rpath'Brad King2023-03-293-4/+30
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9c14f14848 install(TARGETS): Do not apply installation tweaks to NAMELINK files Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8370
| * | | | | | install(TARGETS): Do not apply installation tweaks to NAMELINK filesBrad King2023-03-283-4/+30
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These files are symlinks to the real binaries, and we already apply tweaks to those. Previously we generated installation tweak code guarded by a `NOT IS_SYMLINK` condition that is never true. Drop the code altogether. Add a test covering the motivating use case, in which a `POST_BUILD` step modifies the namelink file to not actually be a symlink. Fixes: #24647
* | | | | | Merge topic 'doc-compile-options'Brad King2023-03-292-0/+8
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e2830cf16b Help: Link to COMPILE_LANGUAGE genex from target_compile_options Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8369
| * | | | | | Help: Link to COMPILE_LANGUAGE genex from target_compile_optionsBrad King2023-03-282-0/+8
| |/ / / / / | | | | | | | | | | | | | | | | | | Issue: #24639
* | | | | | Merge branch 'release-3.26'Brad King2023-03-290-0/+0
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Merge topic 'swift-old-driver' into release-3.26Brad King2023-03-293-3/+72
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 006e1995eb Swift: Restore compatibility with old C++ driver Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8365
* | \ \ \ \ \ Merge topic 'swift-old-driver'Brad King2023-03-293-3/+72
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 006e1995eb Swift: Restore compatibility with old C++ driver Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8365