Kitware Robot
de273b2e11
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 09:56:07 -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
Marc Chevrier
45f17e5a85
cmList: Add container conversion to string
2023-06-22 15:44:17 +02:00
Brad King
52c95540b7
target_*: Fix cross-directory call backtraces
...
Record the call-site backtrace, not the current backtrace of the
target's directory.
Fixes : #23873
2022-08-22 15:29:43 -04:00
Oleksandr Koval
209daa20b2
Code style: add missed explicit 'this->'
...
CMake uses explicit 'this->' style. Using custom clang-tidy check we can
detect and fix places where 'this->' was missed.
2021-01-05 14:32:36 +02:00
Vitaly Stakhovsky
c34b4497f8
cmTarget: add std::string overloads
2019-12-14 09:30:28 -05:00
Kitware Robot
ed98209ddc
Revise include order using clang-format-6.0
...
Run the `clang-format.bash` script to update our C and C++ code to a new
include order `.clang-format`. Use `clang-format` version 6.0.
2019-10-01 12:26:36 -04:00
Regina Pfeifer
9d1a1bc495
cmTarget*: Port away from cmCommand
2019-09-26 13:27:55 -04:00
Cristian Adam
acb9511044
Precompile headers: Treat headers as relative to current source directory
...
Teach `target_precompile_headers` to treat relative paths the
same way as `target_sources`.
Fixes : #19733
2019-09-23 11:13:13 -04:00
Cristian Adam
729d997f10
Precompile Headers: Add REUSE_FROM signature
...
Add the ability to share precompiled headers artifacts between
targets.
Fixes : #19659
2019-09-17 11:58:38 +02:00
Daniel Pfeifer
9b6797e71d
PCH: add target_precompile_headers command
2019-08-27 12:49:53 +02:00