summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'Tasking-regex-fix'Brad King2022-10-071-2/+2
|\ | | | | | | | | | | | | 5b03fecb8f Tasking: Simplify processor list matching regex Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7752
| * Tasking: Simplify processor list matching regexHutchings Samuel (ETAS/ERS-PRM)2022-10-071-2/+2
| |
* | Merge topic 'clang-tidy-prefer-p-option'Brad King2022-10-076-10/+57
|\ \ | | | | | | | | | | | | | | | | | | 3f4e0839c4 clang-tidy: Don't append compiler commands if using -p Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7753
| * | clang-tidy: Don't append compiler commands if using -pCraig Scott2022-10-076-10/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the -p option is given to clang-tidy, it doesn't need the compile command line to be appended. It can get everything it needs from the compile_commands.json file in the directory specified with the -p option. When the compiler being used is not the system default compiler, clang-tidy has been observed to pick up the wrong headers when the compiler command line is given, but not if only the -p option is used. Therefore, don't append the compiler command line if -p is present in the <LANG>_CLANG_TIDY target property. Fixes: #24017
* | | Merge topic 'improve-symlink-error-reporting'Brad King2022-10-0710-42/+122
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 569fb1893e file(INSTALL): Report "Installing:" for a symlink to a directory 1461ae4933 file(INSTALL): Clarify symlink vs dir conflict errors 85f01a1ec2 file(INSTALL): Improve formatting of symlink creation error aba48bd6ac cmSystemTools: Provide quiet link creation methods Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7706
| * | | file(INSTALL): Report "Installing:" for a symlink to a directoryJohn Parent2022-10-062-2/+5
| | | |
| * | | file(INSTALL): Clarify symlink vs dir conflict errorsJohn Parent2022-10-062-2/+17
| | | | | | | | | | | | | | | | | | | | Clarify error reporting in scenario creating a symlink where a directory previously exists.
| * | | file(INSTALL): Improve formatting of symlink creation errorBrad King2022-10-066-11/+53
| | | | | | | | | | | | | | | | Avoid printing two error messages. Format paths without wrapping.
| * | | cmSystemTools: Provide quiet link creation methodsBrad King2022-10-064-30/+50
| | | | | | | | | | | | | | | | Offer variants that let the caller handle error messages.
* | | | Merge topic 'automoc-skip-pch'Brad King2022-10-074-2/+55
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 681714ce20 AUTOMOC: Skip PCH when all sources files skip the PCH file too Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7759
| * | | | AUTOMOC: Skip PCH when all sources files skip the PCH file tooCristian Adam2022-10-064-2/+55
| |/ / / | | | | | | | | | | | | Fixes: #23464
* | | | Merge topic 'tutorial_step5_update'Brad King2022-10-0716-61/+317
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 92edbce342 Tutorial: Update step 5 style Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7728
| * | | | Tutorial: Update step 5 styleMarkus Ferrell2022-10-0616-61/+317
| | | | |
* | | | | Merge topic 'test-try_compile'Brad King2022-10-0745-229/+311
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 90aa0bb305 Tests: Move TryCompile check module cases to RunCMake.Check* 64ac01451d Tests: Clarify RunCMake.Check* case names Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7754
| * | | | | Tests: Move TryCompile check module cases to RunCMake.Check*Brad King2022-10-0614-144/+226
| | | | | | | | | | | | | | | | | | | | | | | | The latter already have similar checks for similar modules.
| * | | | | Tests: Clarify RunCMake.Check* case namesBrad King2022-10-0634-30/+30
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | Cases for `CheckSource{Compiles,Runs}` and `Check{Compiler,Linker}Flag` cover the modules with the language as a parameter, not the language-specific modules.
* | | | | CMake Nightly Date StampKitware Robot2022-10-071-1/+1
|/ / / /
* | | | Merge topic 'try_compile-more-debug-logging'Brad King2022-10-067-2/+50
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7e6b2a92a0 try_compile: Report build dir with --debug-trycompile cbf3252975 Tests: Remove stray debugging flag from RunCMake.CheckCompilerFlag case Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7746
| * | | | try_compile: Report build dir with --debug-trycompileMatthew Woehlke2022-10-066-1/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When `--debug-trycompile` is enabled, issue a log (with trace) for every `try_compile` noting what directory is being used for the compilation. This will make it easier to find the corresponding artifacts. Closes: #24022
| * | | | Tests: Remove stray debugging flag from RunCMake.CheckCompilerFlag caseBrad King2022-10-051-1/+1
| | | | |
* | | | | Merge topic 'test-CheckSourceTree'Brad King2022-10-066-380/+52
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8d453ee751 Tests: Improve CheckSourceTree test c23ebfa333 ci: Tell Git to ignore files known to be downloaded by jobs Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7747
| * | | | | Tests: Improve CheckSourceTree testBrad King2022-10-055-380/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-implement the test using simpler approach. Enable it only when doing an out-of-source build with a `.git` source. Run it last, serially. Re-use the `git` tool found for version computation. Print the output from `git status` without modification. Rely on `.gitignore` instead of filtering out paths ourselves.
| * | | | | ci: Tell Git to ignore files known to be downloaded by jobsBrad King2022-10-051-0/+16
| | | | | |
* | | | | | Merge branch 'release-3.24'Brad King2022-10-060-0/+0
|\ \ \ \ \ \
| * \ \ \ \ \ Merge topic 'ifw-4.4' into release-3.24Brad King2022-10-061-0/+1
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e848ce21c9 CPack/IFW: Add support for QtIFW 4.4 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7750
* | \ \ \ \ \ \ Merge topic 'ifw-4.4'Brad King2022-10-061-0/+1
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | / / | |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | e848ce21c9 CPack/IFW: Add support for QtIFW 4.4 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7750
| * | | | | | CPack/IFW: Add support for QtIFW 4.4Erlend E. Aasland2022-10-051-0/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | Fixes: #24027
* | | | | | Merge topic 'self-target_sources'Brad King2022-10-062-13/+13
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 440822fa5c Source: Fix regression causing CMakeLib sources to be compiled repeatedly Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7748
| * | | | | Source: Fix regression causing CMakeLib sources to be compiled repeatedlyBrad King2022-10-052-13/+13
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | In commit 4ff8604604 (Build: Do not use variables for sources lists, 2022-08-21) the sources of `CMakeLib` were accidentally made PUBLIC. This causes them to be compiled again in all consuming targets. Make the sources PRIVATE instead.
* | | | | CMake Nightly Date StampKitware Robot2022-10-061-1/+1
| | | | |
* | | | | Merge topic 'doc-cmake-modes'Brad King2022-10-0513-30/+64
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | b768a5e23b Help: Disambiguate cmake(1) program modes in Sphinx option references Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7749
| * | | | Help: Disambiguate cmake(1) program modes in Sphinx option referencesBrad King2022-10-0513-30/+64
|/ / / / | | | | | | | | | | | | | | | | | | | | Define the entry point to each mode as an option for the `cmake` program, but reference the options for that mode as part of stand-in `cmake-<mode>` programs.
* | | | Merge topic 'fedora-iwyu'Brad King2022-10-053-1/+54
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c239e7c259 ci: add include-what-you-use to Fedora base image Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7744
| * | | | ci: add include-what-you-use to Fedora base imageKyle Edwards2022-10-043-1/+54
| | | | |
* | | | | CMake Nightly Date StampKitware Robot2022-10-051-1/+1
| |_|/ / |/| | |
* | | | Merge branch 'release-3.24'Brad King2022-10-040-0/+0
|\ \ \ \ | | |/ / | |/| |
| * | | Merge branch 'release-3.23' into release-3.24Brad King2022-10-041-3/+3
| |\ \ \
* | \ \ \ Merge branch 'release-3.23'Brad King2022-10-041-3/+3
|\ \ \ \ \ | | |/ / / | |/| / / | |_|/ / |/| | |
| * | | CMake 3.23.4v3.23.4Brad King2022-10-042-4/+4
| | | |
* | | | Merge topic 'ci-intel-compiler'Brad King2022-10-042-0/+15
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f391c1c269 gitlab-ci: add jobs testing Intel 2022.2.0 compilers on Linux 29e45a94b0 Tests: Teach RunCMake to ignore Intel Classic compiler deprecation warnings Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7742
| * | | | gitlab-ci: add jobs testing Intel 2022.2.0 compilers on LinuxBrad King2022-10-031-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | Note that the classic compiler version is 2021.7.0, but we still have it in the 2022.2.0 base image.
| * | | | Tests: Teach RunCMake to ignore Intel Classic compiler deprecation warningsBrad King2022-10-031-0/+1
| | | | |
* | | | | Merge topic 'FindGDAL-debug-msvc'Brad King2022-10-041-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fdc95c6d19 FindGDAL: Add library name for MSVC Debug GDAL Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7737
| * | | | | FindGDAL: Add library name for MSVC Debug GDALGregoire Krähenbühl2022-10-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Search for `gdald.lib`, which is how the library is now named when built with CMake under MSVC Debug. Fixes: #24015
* | | | | | Merge topic 'xcode-ios-objects'Brad King2022-10-042-0/+30
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 25630863ea Tests: Add case covering XCODE_EMIT_EFFECTIVE_PLATFORM_NAME=OFF for iOS Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7740
| * | | | | | Tests: Add case covering XCODE_EMIT_EFFECTIVE_PLATFORM_NAME=OFF for iOSBrad King2022-10-032-0/+30
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This use case was fixed by commit a7fb4bc475 (Xcode: Set build product locations using CONFIGURATION_BUILD_DIR, 2022-09-28). Add a test to verify the fix. Fixes: #23970
* | | | | | Merge topic 'improve-try_compile-debug-documentation'Brad King2022-10-042-12/+16
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3801785cc3 Help: Improve try_compile debug documentation Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: alcroito <alexandru.croitor@qt.io> Merge-request: !7735
| * | | | | | Help: Improve try_compile debug documentationMatthew Woehlke2022-10-032-12/+16
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Update the --debug-trycompile documentation to account for recent changes to try_compile. Mention where in the build tree to find artifacts when using said option.
* | | | | | Merge topic 'fix-try_compile-doc-typo'Brad King2022-10-041-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ef05a56387 Help: Fix typo in try_compile documentation Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7736
| * | | | | | Help: Fix typo in try_compile documentationMatthew Woehlke2022-09-301-1/+1
| |/ / / / /