Brad King
c94d70c345
cmUVProcessChain: Open output streams automatically
...
Avoid repeating the logic at every call site.
2025-12-19 07:52:29 -05:00
Martin Duffy
3db07b0189
cmInstallScriptHandler: Refactor to store config and path for each command
2025-09-24 12:41:32 -04:00
Kitware Robot
1772622772
LICENSE: Replace references to Copyright.txt with LICENSE.rst
...
```
git grep -lz 'Copyright.txt or https://cmake.org/licensing ' |
while IFS= read -r -d $'\0' f ; do
sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / {
s/Copyright.txt/LICENSE.rst/
}' "$f" ; done
```
2025-03-03 10:43:35 -05:00
Kitware Robot
0b96ae1f6a
Revise C++ coding style using clang-format with "east const"
...
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.
* If you reached this commit for a line in `git blame`, re-run the blame
operation starting at the parent of this commit to see older history
for the content.
* See the parent commit for instructions to rebase a change across this
style transition commit.
Issue: #26123
2025-01-23 13:09:50 -05:00
Martin Duffy
097d4fd1b5
instrumentation: Collect and record project build system metrics
...
Add a feature for collecting build instrumentation for CMake projects.
Issue: #26099
2025-01-15 09:16:50 -05:00
Martin Duffy
ea8e3107ec
cmake --install: Respect CMAKE_DEFAULT_CONFIGS
...
When `cmake --install` is run with no `--config` passed, use
`CMAKE_DEFAULT_CONFIGS` to determine which config(s) to install.
Fixes : #21475
2024-11-19 11:37:47 -05:00
Martin Duffy
9799491c7e
install: Write manifest file in parallel install
...
Updates the parallel install to generate the install_manifest.txt file.
2024-07-25 12:36:32 -04:00
Martin Duffy
159ba027b9
Install: Add parallel installation option
...
Fixes : #26000
2024-07-15 11:49:29 -04:00