- 15 Feb, 2022 1 commit
-
-
Kitware Robot authored
-
- 14 Feb, 2022 17 commits
-
-
925da7d4 VS: Write ZERO_CHECK.proj for VS19 and above 11b8366e VS: Introduce IsInSolution to check whether a target is in sln file 0682cd36 VS: Add proj as a project type to VsProjectType 6ab2c40c cmGlobalVisualStudio7Generator: Drop unused method Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6891
-
-
8efd4b53 cmake::GetDebugFindPkgOutput: Use consistent argument name 546922a5 Help: Fix typo and improve docs for --debug-find-pkg|var options Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6977
-
8efd4b53 cmake::GetDebugFindPkgOutput: Use consistent argument name 546922a5 Help: Fix typo and improve docs for --debug-find-pkg|var options Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6977
-
-
58af150a FortranCInterface: Fix mangling detection for x86_64 on arm64 macOS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6974
-
58af150a FortranCInterface: Fix mangling detection for x86_64 on arm64 macOS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6974
-
-
61929f93 GoogleTest: Fix escaping in test names Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6965
-
61929f93 GoogleTest: Fix escaping in test names Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6965
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
Brad King authored
Merge-request: !6969
-
Craig Scott authored
The argument name used in the class declaration didn't match the one used in the implementation file. The one in the header appears to be a cut-n-paste from GetDebugFindOutput(), but the implementation makes it clear that "pkg" better infers what the argument represents than "var".
-
Craig Scott authored
Amends d7b18895 (cmake: Add filtered debug-find options, 2021-12-07)
-
Kitware Robot authored
-
- 13 Feb, 2022 1 commit
-
-
Kitware Robot authored
-
- 12 Feb, 2022 5 commits
-
-
Use VsProjectType::proj as the file format for ZERO_CHECK and write ZERO_CHECK.proj as a msbuild dependency for other projects.
-
Previously, different versions of VS Generators checked whether a target was in .sln file or not by checking whether the target was to be written to build system or not. As we move `ZERO_CHECK.vcxproj` to `.proj`, we want to exclude those files from being written to `.sln` files too. This commit introduces `IsInSolution()` at `cmGlobalVisualStudioGenerator` level which can be customized at specific versioned Generator when needed.
-
Add `proj` as a project type to VsProjectType so that it can be consumed by `ZERO_CHECK` target. This commit adds the type and cleans up the code that needs to treat `proj` and `csproj` in the same fashion. Next commit will make changes to add `ZERO_CHECK.proj`.
-
Kitware Robot authored
-
- 11 Feb, 2022 9 commits
-
-
-
38de1bef find_package: Improve --debug-find-pkg= when using a find module d634d203 find_package: Avoid printing debug output header multiple times df3e2945 find_package: Mention package name in Config mode debug output 636ca7f2 find_package: Fix find module name in --debug-find output 596e1854 find_package: Improve formatting of --debug-find output 2f435275 Tests: Improve order of RunCMake.find_package cases a690523f cmFindPackageCommand: Drop ComputeIfDebugModeWanted overload Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !6973
-
38de1bef find_package: Improve --debug-find-pkg= when using a find module d634d203 find_package: Avoid printing debug output header multiple times df3e2945 find_package: Mention package name in Config mode debug output 636ca7f2 find_package: Fix find module name in --debug-find output 596e1854 find_package: Improve formatting of --debug-find output 2f435275 Tests: Improve order of RunCMake.find_package cases a690523f cmFindPackageCommand: Drop ComputeIfDebugModeWanted overload Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !6973
-
8e1e97cc Trace: include `line_end` field in json-v1 format Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Merge-request: !6968
-
d2676029 Tests: Improve RunCMake.ExternalProject rebuild case robustness Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6971
-
90ef30c0 ci: Explicitly disable Java tests on Windows Clang builds Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6972
-
Due to add_command() being a macro it introduced excessive and nonobvious escaping in different parts of the script. Because of one of such places the resulting script would have an erroneous ${TEST_LIST} if the user data (in test parameters) had a semicolon. To eliminate this non-obvious escaping, add_command() was converted to function. Updated the escaping accordingly. Fixes: #23059
-
Kitware Robot authored
- 10 Feb, 2022 7 commits
-
-
Brad King authored
-
Brad King authored
Otherwise, if there are no paths considered then the output does not specify the name of the package.
-
Brad King authored
-
Brad King authored
Also spell out more complete content in the test's expect output.
-
Brad King authored
Sort recently added cases among similar-named cases.
-
Brad King authored
The overload for `--debug-find-pkg` has the same signature as the base class method for `--debug-find-var`. To avoid confusion, drop the overload and inline it its only call site.