summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'pch-tv90'Brad King2020-09-091-8/+20
|\ | | | | | | | | | | | | ce7c100545 PCH: Fix 30s wait for VS2008 when used via -Tv90 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5199
| * PCH: Fix 30s wait for VS2008 when used via -Tv90Cristian Adam2020-09-071-8/+20
| | | | | | | | | | Fixes: #21142 Backport: release
* | Merge branch 'release-3.18'Brad King2020-09-090-0/+0
|\ \
| * \ Merge topic 'ios-pch-x-lang-header' into release-3.18Brad King2020-09-094-4/+19
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | 8d61294c3e PCH: Mark CMake PCH source files as -x <lang>-header Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5188
* | \ \ Merge topic 'ios-pch-x-lang-header'Brad King2020-09-094-4/+19
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | 8d61294c3e PCH: Mark CMake PCH source files as -x <lang>-header Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5188
| * | | PCH: Mark CMake PCH source files as -x <lang>-headerCristian Adam2020-09-044-4/+19
| | |/ | |/| | | | | | | Fixes: #21163
* | | Merge topic 'cmstrlen'Kyle Edwards2020-09-092-0/+17
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 0c9cdf30ed cmStringAlgorithms: Add cmStrLen() Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5201
| * | | cmStringAlgorithms: Add cmStrLen()Kyle Edwards2020-09-082-0/+17
| | | |
* | | | CMake Nightly Date StampKitware Robot2020-09-091-1/+1
| | | |
* | | | Merge topic 'ExternalData-doc-typo'Brad King2020-09-081-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1ad991a13e Help: correct typo in ExternalData (duplicate "of") Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5196
| * | | | Help: correct typo in ExternalData (duplicate "of")Joachim Wuttke (o)2020-09-071-1/+1
| | | | |
* | | | | Merge topic 'ispc_tests_run_on_older_hw'Brad King2020-09-082-4/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c83711d9bd ISPC tests will now run on any hardware that only supports SSE2 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5205
| * | | | | ISPC tests will now run on any hardware that only supports SSE2Robert Maynard2020-09-082-4/+4
|/ / / / / | | | | | | | | | | | | | | | Previously we expected AVX1 support.
* | | | | Merge topic 'generate-target-order'Brad King2020-09-0812-156/+90
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | aea465793e cmLocalVisualStudio7Generator: Consolidate target iteration 1527242745 cmLocalVisualStudio10Generator: Simplify target ordering by dependencies 48bf7192e7 cmLocalVisualStudio7Generator: Generate targets in dependency order 17aba9c9a6 cmLocalUnixMakefileGenerator3: Generate targets in dependency order 69ee18163b cmLocalGhsMultiGenerator: Generate targets in dependency order c4e296a609 cmGlobalGenerator: Compute a global target ordering respecting dependencies Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5187
| * | | | | cmLocalVisualStudio7Generator: Consolidate target iterationBrad King2020-09-045-57/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Combine iteration with `cmLocalVisualStudio10Generator` and dispatch generation of each target with a virtual `GenerateTarget` method.
| * | | | | cmLocalVisualStudio10Generator: Simplify target ordering by dependenciesBrad King2020-09-042-26/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace our own depth-first traversal with use of the global generator's computed target order that respects dependencies.
| * | | | | cmLocalVisualStudio7Generator: Generate targets in dependency orderBrad King2020-09-041-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the globally computed target ordering so that we generate all of a target's dependencies before generating the target itself.
| * | | | | cmLocalUnixMakefileGenerator3: Generate targets in dependency orderBrad King2020-09-041-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the globally computed target ordering so that we generate all of a target's dependencies before generating the target itself.
| * | | | | cmLocalGhsMultiGenerator: Generate targets in dependency orderBrad King2020-09-042-33/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the globally computed target ordering so that we generate all of a target's dependencies before generating the target itself.
| * | | | | cmGlobalGenerator: Compute a global target ordering respecting dependenciesBrad King2020-09-044-42/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move this up from `cmGlobalXCodeGenerator`. It will be useful for all generators.
* | | | | | Merge topic 'ispc_improvements'Brad King2020-09-0862-13/+633
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a020787a9b ISPC: Support generation for multiple instruction sets 5a1750017e ISPC: Add compiler launcher support Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5173
| * | | | | | ISPC: Support generation for multiple instruction setsRobert Maynard2020-09-0448-8/+595
| | | | | | |
| * | | | | | ISPC: Add compiler launcher supportRobert Maynard2020-09-0318-5/+38
| | | | | | |
* | | | | | | Merge topic 'GetExecutionListFile-by-ref'Brad King2020-09-084-6/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 879bd7fd9c cmStateSnapshot: Return const reference from GetExecutionListFile() Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5186
| * | | | | | | cmStateSnapshot: Return const reference from GetExecutionListFile()Oleksandr Koval2020-09-034-6/+6
| |/ / / / / /
* | | | | | | Merge topic 'optimize-cmJoin'Brad King2020-09-083-4/+69
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 38928ee3ee cmStringAlgorithms: Add faster cmJoin overloads for strings Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5185
| * | | | | | | cmStringAlgorithms: Add faster cmJoin overloads for stringsOleksandr Koval2020-09-033-4/+69
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cmJoin() is often used with std::string ranges. Generic implementation uses std::ostringstream which is not optimal. With strings we can avoid operator<<() and make much faster implementation. Additional 'initial' argument is useful for cmStringCommand.cxx:HandleAppendCommand().
* | | | | | | Merge branch 'release-3.18'Brad King2020-09-080-0/+0
|\ \ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | |
| * | | | | | Merge topic 'FindPython-set-CMP0012-NEW' into release-3.18Brad King2020-09-081-1/+11
| |\ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0670797d71 FindPython: CMP0012 must be set to NEW Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5198
* | | | | | | Merge topic 'FindPython-set-CMP0012-NEW'Brad King2020-09-081-1/+11
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0670797d71 FindPython: CMP0012 must be set to NEW Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5198
| * | | | | | FindPython: CMP0012 must be set to NEWMarc Chevrier2020-09-071-1/+11
| |/ / / / / | | | | | | | | | | | | | | | | | | Fixes: #21168
* | | | | | Merge topic 'doc-cmake_path'Brad King2020-09-081-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2b51cc5481 Help: Fix typo in cmake_path(CMAKE_PATH) command signature Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5203
| * | | | | | Help: Fix typo in cmake_path(CMAKE_PATH) command signatureBrad King2020-09-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix a typo accidentally added by commit eb583b0a66 (cmake_path command: path management, 2020-07-23). Remove a stray `]` character that breaks the pygments lexer.
* | | | | | | Merge topic 'cm-optional-comparison'Kyle Edwards2020-09-082-118/+401
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7e1304c6e6 cm::optional: Add comparison operators c854e9eba5 Refactor: Add ASSERT_TRUE() macro to testOptional.cxx Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5195
| * | | | | | | cm::optional: Add comparison operatorsKyle Edwards2020-09-072-0/+362
| | | | | | | |
| * | | | | | | Refactor: Add ASSERT_TRUE() macro to testOptional.cxxKyle Edwards2020-09-061-118/+39
| | | | | | | |
* | | | | | | | Merge topic 'cmake_path'Marc Chevrier2020-09-08195-11/+4158
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | / | |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | eb583b0a66 cmake_path command: path management 212e953d35 cmCMakePath: Class for path handling Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Acked-by: Raul Tambre <raul@tambre.ee> Merge-request: !5158
| * | | | | | cmake_path command: path managementMarc Chevrier2020-09-06191-8/+3435
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: #19568, #20922
| * | | | | | cmCMakePath: Class for path handlingMarc Chevrier2020-09-066-3/+723
| |/ / / / /
* | | | | | CMake Nightly Date StampKitware Robot2020-09-081-1/+1
| | | | | |
* | | | | | Merge topic 'fix-compare'Kyle Edwards2020-09-071-3/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4bc1486cd3 cmConditionEvaluator: Avoid comparing pointers Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5189
| * | | | | | cmConditionEvaluator: Avoid comparing pointersvvs314152020-09-041-3/+4
| | | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2020-09-071-1/+1
| |/ / / / / |/| | | | |
* | | | | | CMake Nightly Date StampKitware Robot2020-09-061-1/+1
| | | | | |
* | | | | | CMake Nightly Date StampKitware Robot2020-09-051-1/+1
|/ / / / /
* | | | | Merge topic 'use-tocstr'Kyle Edwards2020-09-0411-35/+23
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | 1380b43764 Refactor: Use cmToCStr() Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5184
| * | | | Refactor: Use cmToCStr()Vitaly Stakhovsky2020-09-0311-35/+23
| | |/ / | |/| |
* | | | Merge topic 'pragma-once'Brad King2020-09-04510-2014/+512
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5585e8575b Help: Add note about #pragma once 407afc0f91 Bootstrap: Use #pragma once in cmThirdParty.h aa7bce8495 Utilities/Scripts: Remove temporary #pragma once conversion script bdca8b01d2 Modernize: Use #pragma once in all header files 093ba4061d Utilities/Scripts: Add temporary #pragma once conversion script Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Raul Tambre <raul@tambre.ee> Merge-request: !5171
| * | | | Help: Add note about #pragma onceKyle Edwards2020-09-031-0/+3
| | | | |
| * | | | Bootstrap: Use #pragma once in cmThirdParty.hKyle Edwards2020-09-031-3/+1
| | | | |