summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'objc-compiler-launcher'Brad King2020-01-103-3/+6
|\ | | | | | | | | | | | | | | | | f6ef6e5a73 Merge branch 'backport-3.16-objc-compiler-launcher' 1a9f6bad98 ObjC: Add _COMPILE_LAUNCHER support a05b9d4239 ObjC: Add _COMPILE_LAUNCHER support Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4189
| * ObjC: Add _COMPILE_LAUNCHER supportCristian Adam2020-01-093-3/+6
| | | | | | | | Fixes: #20178
* | Merge topic 'custom-target-FOLDER'Brad King2020-01-101-1/+2
|\ \ | | | | | | | | | | | | | | | | | | 353405daef Add support for FOLDER target property to custom targets Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4193
| * | Add support for FOLDER target property to custom targetsLuca Cappa2020-01-091-1/+2
| | | | | | | | | | | | Fixes: #18372
* | | Merge topic 'reduce_verbosity_find_package_debug_mode'Brad King2020-01-102-12/+35
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 6c92df382f find_package: Improve debug logging output Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4175
| * | | find_package: Improve debug logging outputRobert Maynard2020-01-012-12/+35
| | | | | | | | | | | | | | | | | | | | The find_package debug log messages are now easier to read when enabled by the `--debug-find` command-line option or `CMAKE_FIND_DEBUG_MODE` variable.
* | | | CMake Nightly Date StampKitware Robot2020-01-101-1/+1
| |_|/ |/| |
* | | CMake Nightly Date StampKitware Robot2020-01-091-1/+1
| |/ |/|
* | Merge topic 'modernize-memory-management'Marc Chevrier2020-01-0839-254/+293
|\ \ | | | | | | | | | | | | | | | | | | a00960288b GlobalGenerator family: modernize memory management Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4181
| * | GlobalGenerator family: modernize memory managementMarc Chevrier2020-01-0739-254/+293
| | |
* | | CMake Nightly Date StampKitware Robot2020-01-081-1/+1
|/ /
* | CMake Nightly Date StampKitware Robot2020-01-071-1/+1
| |
* | Merge topic 'clang-format-headers-sort'Marc Chevrier2020-01-063-6/+3
|\ \ | | | | | | | | | | | | | | | | | | a8aa89352a clang-format: fix erroneous handling of header <queue> Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4182
| * | clang-format: fix erroneous handling of header <queue>Marc Chevrier2020-01-063-6/+3
| | | | | | | | | | | | The rule Regex: '^<' was not applied to this header because a more specific one applies: Regex: '^(<|")Qt?[A-Z]' used for Qt headers (rules are not case-sensitive). So adding a specific rule for this header before the Qt rule is required.
* | | Merge topic 'autogen_hh_headers'Kyle Edwards2020-01-063-54/+124
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | 9eab3cad6a Tests: Add AUTOGEN policy CMP0100 test 8c2be3ae94 Tests: Restore Autogen/SameName .hh header test abad139c99 Autogen: Process .hh headers based on new policy CMP0100 settings 4db1463e05 Autogen: Try adding header suffix to moc output file name on name conflicts Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4170
| * | Autogen: Process .hh headers based on new policy CMP0100 settingsSebastian Holtermann2020-01-043-41/+93
| | | | | | | | | | | | | | | | | | | | | Reintroduces .hh header processing in AUTOMOC and AUTOUIC based on the new policy CMP0100 setting. Fixes: #13904 CMAKE_AUTOMOC misses headers with ".hh" extension
| * | Autogen: Try adding header suffix to moc output file name on name conflictsSebastian Holtermann2020-01-041-13/+31
| | | | | | | | | | | | | | | | | | | | | In AUTOGEN, this changes the moc output file name computation on output name conflicts to first try to add the header suffix to the moc output base name. When that still conflicts, we try adding a range of sequential numbers. If we still can't find an unique output name, we raise an error.
* | | CMake Nightly Date StampKitware Robot2020-01-061-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2020-01-051-1/+1
|/ /
* | CMake Nightly Date StampKitware Robot2020-01-041-1/+1
| |
* | Merge topic 'add_target_deprecation'Kyle Edwards2020-01-034-0/+42
|\ \ | | | | | | | | | | | | | | | | | | | | | c621839bd9 Add set_property option: DEPRECATION Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Daniele E. Domenichelli <ddomenichelli@drdanz.it> Merge-request: !4128
| * | Add set_property option: DEPRECATIONJoseph Snyder2020-01-024-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new property flag for a target which contains a message regarding deprecation status. Add a warning at "Generate" time if a linked target is marked as deprecated. Expand ExportImport test to ensure that new property is being set and passed correctly. Ensure that the message is shown during the "Generate" step run of the ExportImport test.
* | | Merge topic 'cmstate-std-string'Marc Chevrier2020-01-034-22/+25
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 232d5bc333 cmState: more members will use std::string Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4164
| * | | cmState: more members will use std::stringVitaly Stakhovsky2020-01-024-22/+25
| | | |
* | | | CMake Nightly Date StampKitware Robot2020-01-031-1/+1
|/ / /
* | | Merge topic 'modernize-memory-management'Marc Chevrier2020-01-0218-101/+115
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 5444a8095d cmGlobalGenerator: modernize memrory managemenbt Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4166
| * | | cmGlobalGenerator: modernize memrory managemenbtMarc Chevrier2019-12-3018-101/+115
| | | |
* | | | CMake Nightly Date StampKitware Robot2020-01-021-1/+1
| |_|/ |/| |
* | | CMake Nightly Date StampKitware Robot2020-01-011-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2019-12-311-1/+1
| | |
* | | CMake Nightly Date StampKitware Robot2019-12-301-1/+1
|/ /
* | CMake Nightly Date StampKitware Robot2019-12-291-1/+1
| |
* | Merge topic 'ctest-resource-allocation-spec-message'Craig Scott2019-12-293-23/+81
|\ \ | | | | | | | | | | | | | | | | | | b393b32b4b CTest: Improve error handling when reading resource spec file Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4162
| * | CTest: Improve error handling when reading resource spec fileKyle Edwards2019-12-273-23/+81
| | | | | | | | | | | | Fixes: #20079
| * | CMake 3.16.2v3.16.2Brad King2019-12-191-1/+1
| | |
| * | Merge topic 'autogen-no-hh' into release-3.16Brad King2019-12-191-2/+4
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | 7fa7f55230 Autogen: Revert processing of .hh files for compatibility Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4146
| * \ \ Merge topic 'pch-force-include' into release-3.16Brad King2019-12-161-0/+3
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c5c218fa0d PCH: Append pch header file to list of forced include files Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4135
* | | | | CMake Nightly Date StampKitware Robot2019-12-281-1/+1
| | | | |
* | | | | Merge topic 'traceJSON'Kyle Edwards2019-12-274-9/+129
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e113ab1168 trace: Add test for the JSON-v1 trace 482497e0de trace: Add JSON output format Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4102
| * | | | | trace: Add JSON output formatDaniel Mensinger2019-12-234-9/+129
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new `--trace-format=` flag, to enable the new JSON trace output format. This new format is easier to parse by machines than the existing format. This new format also removes the ambiguity of the whitespace in the "old" format (e.g. is that whitespace part of a file path, or does it seperate arguments)
* | | | | Merge topic 'cmcoretrycompile_cleanup_symlinks'Kyle Edwards2019-12-271-1/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a024d614ca cmCoreTryCompile::CleanupFiles now removes symlinks instead of their contents. Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4158
| * | | | | cmCoreTryCompile::CleanupFiles now removes symlinks instead of their contents.Johnny Jazeix2019-12-261-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | Fixes: #17522
* | | | | | CMake Nightly Date StampKitware Robot2019-12-271-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2019-12-261-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2019-12-251-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2019-12-241-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2019-12-231-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2019-12-221-1/+1
|/ / / / /
* | | | | CMake Nightly Date StampKitware Robot2019-12-211-1/+1
| | | | |
* | | | | Merge topic 'add_find_call_debugging'Kyle Edwards2019-12-2016-74/+398
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f3c9396260 Help: Document CMAKE_FIND_DEBUG_MODE 204b8d9f4e find_*: Use debug logging infrastructure a7ea20649d find_*: Add debug logging infrastructure Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3935