summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'cmake-P-path-args'Brad King2022-07-251-13/+10
|\ | | | | | | | | | | | | | | | | | | | | | | febe3190f0 Merge branch 'backport-3.23-cmake-P-path-args' 846a650ff7 cmake: In -P mode ignore extra paths on the command line c362cba566 cmake: simplify to a single source of truth of working mode 261fa5db39 cmake: In -P mode ignore extra paths on the command line 314135cdf1 cmake: simplify to a single source of truth of working mode Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7494
| * cmake: In -P mode ignore extra paths on the command lineRobert Maynard2022-07-221-1/+2
| | | | | | | | Fixes: #23748
| * cmake: simplify to a single source of truth of working modeRobert Maynard2022-07-221-12/+8
| |
* | Merge topic 'revert-vs-ZERO_CHECK-proj'Brad King2022-07-254-251/+34
|\ \ | | | | | | | | | | | | | | | | | | | | | 26b724cf2b Merge branch 'backport-3.24-revert-vs-ZERO_CHECK-proj' 289932ded0 VS: Revert "Write ZERO_CHECK.proj for VS19 and above" Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7499
| * \ Merge branch 'backport-3.24-revert-vs-ZERO_CHECK-proj'Brad King2022-07-224-251/+34
| |\ \
| | * | VS: Revert "Write ZERO_CHECK.proj for VS19 and above"Brad King2022-07-224-251/+34
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert commit a334f1b906 (VS: Write ZERO_CHECK.proj for VS19 and above, 2021-12-24, v3.24.0-rc1~607^2) and a supporting change from commit 7219988b00 (VS: Exclude ZERO_CHECK.proj from .sln for include_external_msproject, 2022-07-15, v3.24.0-rc4~1^2). The change was made to support `dotnet` tooling in addition to `msbuild`. However, not having `ZERO_CHECK` in the `.sln` breaks common interactive workflows. Revert the change for now. Later it can be re-introduced behind some kind of option that enables `dotnet` support. Fixes: #23726 Issue: #20227
* | | Merge topic 'revert-ui-check'Brad King2022-07-251-16/+12
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 778aaf6fdc AUTOUIC: Revert "Fix internal paths of generated ui_foo.h files" Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7498
| * | | AUTOUIC: Revert "Fix internal paths of generated ui_foo.h files"Brad King2022-07-221-16/+12
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | Revert commit 10668f26c9 (AUTOUIC: Fix internal paths of generated ui_foo.h files, 2022-05-21, v3.24.0-rc3~20^2). It broke some existing projects that use more than one `.ui` file of the same name. Fixes: #23759 Issue: #23523
| * | CMake 3.24.0-rc4v3.24.0-rc4Brad King2022-07-201-1/+1
| | |
* | | Merge topic 'update-kwsys'Brad King2022-07-252-42/+60
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6d84355274 Merge branch 'upstream-KWSys' into update-kwsys f98fa3e543 KWSys 2022-07-22 (ac792bf7) Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7486
| * | | Merge branch 'upstream-KWSys' into update-kwsysBrad King2022-07-222-42/+60
| | |/ | |/| | | | | | | | | | | | | # By KWSys Upstream * upstream-KWSys: KWSys 2022-07-22 (ac792bf7)
* | | Merge topic 'command-arg-parser-result'Brad King2022-07-257-275/+317
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8a18e82e95 cmCMakePathCommand: Report keyword errors via argument parser results 7e4a9afa1a cmCMakeHost*Command: Report keyword errors via argument parser results 74ec6b63c2 cmFileCommand: Report keyword errors via argument parser results e56108f629 cmExecuteProcessCommand: Report keyword errors via argument parser results b7c82b26b0 cmArgumentParser: Capture keyword errors in parse results 50876f6b9a cmArgumentParser: Add structure to capture operational results 5955ec1992 cmArgumentParser: Store keyword action map with explicit name 119e1f7fbc cmArgumentParser: Factor out common static/dynamic implementation ... Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7488
| * | | cmCMakePathCommand: Report keyword errors via argument parser resultsBrad King2022-07-221-35/+31
| | | |
| * | | cmCMakeHost*Command: Report keyword errors via argument parser resultsBrad King2022-07-221-8/+4
| | | |
| * | | cmFileCommand: Report keyword errors via argument parser resultsBrad King2022-07-221-97/+67
| | | |
| * | | cmExecuteProcessCommand: Report keyword errors via argument parser resultsBrad King2022-07-221-8/+4
| | | |
| * | | cmArgumentParser: Capture keyword errors in parse resultsBrad King2022-07-222-1/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit f46b2e9142 (cmArgumentParser: Model maybe-missing string with wrapper type, 2022-07-06) we know during parsing whether or not it is an error for a keyword to be missing a value. Record such errors in the parse results structure. Offer clients a helper method to report them. This provides clients with an alternative to manually checking `keywordsMissingValue` and generating their own error message.
| * | | cmArgumentParser: Add structure to capture operational resultsBrad King2022-07-221-9/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Create a way for the parser to record errors or incidental information about the argument parsing operation that clients can inspect afterward. Offer clients a way to hold the structure as part of their arguments structure.
| * | | cmArgumentParser: Store keyword action map with explicit nameBrad King2022-07-222-11/+19
| | | |
| * | | cmArgumentParser: Factor out common static/dynamic implementationBrad King2022-07-221-29/+32
| | | |
| * | | cmArgumentParser: Track pending keyword explicitlyBrad King2022-07-202-5/+14
| | | | | | | | | | | | | | | | Avoid allocating missing keyword vector unnecessarily.
| * | | cmArgumentParser: De-duplicate parse loopBrad King2022-07-201-7/+11
| | | |
| * | | cmArgumentParser: Simplify internal method signaturesBrad King2022-07-202-31/+45
| | | | | | | | | | | | | | | | | | | | Record `Parse` parameters during construction of the internal instance instead of passing them to every method.
| * | | cmFileCommand: Use cm::optional for keyword argument presenceBrad King2022-07-201-32/+18
| | | |
| * | | cmCMakePathCommand: Use cm::optional for keyword argument presenceBrad King2022-07-201-34/+26
| | | |
| * | | cmInstallCommand: Drop unused local variableBrad King2022-07-201-3/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2022-07-251-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2022-07-241-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2022-07-231-1/+1
| |/ / |/| |
* | | Merge topic 'try_run_split_output'Brad King2022-07-222-14/+167
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | a2cd0687db try_run: Add RUN_OUTPUT_STDOUT_VARIABLE and RUN_OUTPUT_STDERR_VARIABLE. Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7453
| * | | try_run: Add RUN_OUTPUT_STDOUT_VARIABLE and RUN_OUTPUT_STDERR_VARIABLE.Patrick Northon2022-07-082-14/+167
| | | |
* | | | CMake Nightly Date StampKitware Robot2022-07-221-1/+1
| | | |
* | | | CMake Nightly Date StampKitware Robot2022-07-211-1/+1
| | | |
* | | | Merge topic 'vs-ZERO_CHECK-proj'Brad King2022-07-205-1/+20
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | 7219988b00 VS: Exclude ZERO_CHECK.proj from .sln for include_external_msproject Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7478
| * | | VS: Exclude ZERO_CHECK.proj from .sln for include_external_msprojectSumit Bhardwaj2022-07-205-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In `cmGlobalVisualStudio7Generator::WriteTargetsToSolution`, we skip writing `ZERO_CHECK.proj` to solution file as the check in `cmGlobalVisualStudioGenerator::IsInSolution` returns `false` for `ZERO_CHECK`. However, we write ZERO_CHECK to ProjectDependencies for external projects as there are no checks in `cmGlobalVisualStudio71Generator::WriteExternalProject`. Similar to `cmGlobalVisualStudioGenerator::IsInSolution`, we introduce `IsDepInSolution(const std::string&)` which excludes `ZERO_CHECK.proj` from being added to sln file for the cases where we have `ZERO_CHECK.proj`. Fixes: #23708
| * | | Merge topic 'export-try-compile-crash' into release-3.24Kyle Edwards2022-07-141-1/+3
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 29c7546a61 cmGlobalGenerator: Only compute build files for all targets Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !7472
| * | | | CMake 3.24.0-rc3v3.24.0-rc3Brad King2022-07-071-1/+1
| | | | |
| * | | | Merge topic 'ccmake-fix-pdcurses-windows' into release-3.24Brad King2022-07-071-2/+4
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a78d10220c ccmake: Fix mangled configuration log with PDCurses on Windows Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7458
| * \ \ \ \ Merge topic 'genex-LINK_LIBRARY-check-supported-properties' into release-3.24Brad King2022-07-073-10/+31
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 913ea78d7a Genex LINK_LIBRARY and LINK_GROUP: check supported properties Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !7454
* | | | | | | CMake Nightly Date StampKitware Robot2022-07-201-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2022-07-191-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | Merge topic 'ninja-multi-compile-commands-duplicates'Kyle Edwards2022-07-181-3/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a186c1aff6 Ninja Multi-Config: Deduplicate compile_commands.json for cross configs Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Daniel Hannon <hello111f@gmail.com> Merge-request: !7477
| * | | | | | Ninja Multi-Config: Deduplicate compile_commands.json for cross configsKyle Edwards2022-07-151-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | compile_commands.json was being written for every permutation of cross configurations. Deduplicate so only one command is output for each configuration. Fixes: #23733
* | | | | | | CMake Nightly Date StampKitware Robot2022-07-181-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2022-07-171-1/+1
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2022-07-161-1/+1
|/ / / / / /
* | | | | | CMake Nightly Date StampKitware Robot2022-07-151-1/+1
| | | | | |
* | | | | | Merge topic 'export-try-compile-crash'Kyle Edwards2022-07-141-1/+3
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 29c7546a61 cmGlobalGenerator: Only compute build files for all targets Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !7472
| * | | | | cmGlobalGenerator: Only compute build files for all targetsKyle Edwards2022-07-131-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we're creating generation objects for imported targets only, we don't need the export sets. Only compute build file generators if generating for all targets. Fixes: #23709
| * | | | | Merge branch 'file-set-crash' into release-3.23Brad King2022-06-303-4/+32
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Merge-request: !7420