- 05 Jun, 2018 11 commits
-
-
Brad King authored
Release versions do not have the development topic section of the CMake Release Notes index page.
-
049cc31d Help: Organize and revise 3.12 release notes 27bba7e8 Help: Consolidate 3.12 release notes Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2132
-
f719a13c Features: Add special case to disable relaxed constexpr for Intel 18 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2133
-
be281068 Fix misc. typos Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Alex Turbov <i.zaufi@gmail.com> Merge-request: !2130
-
Brad King authored
-
7ad5165c ExternalProject: Fix cache generation when args end with "-NOTFOUND" Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2127
-
Brad King authored
Merge-request: !2134
-
afcb68a0 Help: Fix indentation for `CPACK_NUGET_PACKAGE_AUTHORS` Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2135
-
-
470ff56e ExternalProject: Improve URL_HASH argument description Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2134
-
Kitware Robot authored
-
- 04 Jun, 2018 14 commits
-
-
Matt McCormick authored
The previous documentation suggested ALGO=MD5=d7a3dc7757a35df3dbb890f7dee0976b for example.
-
Brad King authored
Intel compilers define `__cpp_constexpr` to `200704` even in C++14 mode. This indicates that the `cxx_relaxed_constexpr` feature is not available. However, Intel 17 and above document support for it. In commit v3.8.0~9^2 (Features: Update features for Intel C++ 17.0.2 on UNIX, 2017-03-31) we added a special check for this case. Intel 17 and 19 work. However, Intel 18 does not seem to work and fails our test case. Add a special case to disable the feature for Intel 18.
-
Brad King authored
Add section headers similar to the 3.11 release notes and move each individual bullet into an appropriate section. Revise a few bullets.
-
Brad King authored
Run the `Utilities/Release/consolidate-relnotes.bash` script to move notes from `Help/release/dev/*` into `Help/release/3.12.rst`.
-
Generalize the fix in commit v3.11.0-rc4~8^2 (ExternalProject: Fix cache generation when last args ends with "-NOTFOUND", 2018-03-10) to work for any argument rather than just the last one. ExternalProject can now successfully generate the cache file when any (not only the last one) cache variable associated with either `CMAKE_CACHE_ARGS` or `CMAKE_DEFAULT_CACHE_ARGS` configure step option is set to a `<value>` ending with `-NOTFOUND`.
-
9e27881b TI: Add support for C language standards Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2131
-
Set C90 and C99 compile options for TI compiler. Fixes: #18061
-
56f45bb7 Refactor write_basic_package_version_file tests Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2122
-
caa138c1 Move GNU COMPILER_PREDEFINES_COMMAND from Platform to Compiler Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2121
-
6d8ae1e6 cmSystemTools: Restore compilation with libarchive versions below 3.3.1 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2126
-
81870f11 Merge branch 'upstream-KWSys' into update-kwsys 3af8c771 KWSys 2018-06-01 (8ef62b28) Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2125
-
Kitware Robot authored
-
- 03 Jun, 2018 1 commit
-
-
Kitware Robot authored
-
- 02 Jun, 2018 1 commit
-
-
Kitware Robot authored
-
- 01 Jun, 2018 13 commits
-
-
Brad King authored
* upstream-KWSys: KWSys 2018-06-01 (8ef62b28)
-
Code extracted from: https://gitlab.kitware.com/utils/kwsys.git at commit 8ef62b289e0a99856893ef49106c2b2d94e9dd0c (master). Upstream Shortlog ----------------- Brad King (2): 6b9c233c clang-format.bash: update to clang-format-6.0 b7a341cf Empty commit at end of history preceding clang-format-6.0 style transition Kitware Robot (1): 828b6837 Revise C++ coding style using clang-format-6.0
-
d7204e64 Revise C++ coding style using clang-format-6.0 12fed3ed Empty commit at end of history preceding clang-format-6.0 style transition 523c443d clang-format.bash: update to clang-format-6.0 eb7ec19c clang-format: Add comments to suppress some formatting b67a5bf1 Tests/VSWinStorePhone: Do not format managed source Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Sebastian Holtermann <sebholt@xwmw.org> Merge-request: !2123
-
Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`. Use `clang-format` version 6.0. * 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.
-
Brad King authored
This is an empty commit that precedes an automatic application of clang-format-6.0 to update the C++ style of our entire source tree. This may be helpful to rebase a topic branch that was originally based on a commit preceding the transition. One may first rebase the topic on this commit. Then use one of the following approaches. * Rewrite the topic, including this commit, using `git filter-branch` `--tree-filter` with `clang-format.bash` to update the style in every commit. Rebase the revised topic, excluding the rewrite of this commit, on the style transition commit. OR * Add a `.git/info/grafts` entry to change the parent of the first commit in the topic from this commit to the style transition commit. Rewrite the topic using `git filter-branch --tree-filter` with `clang-format.bash` to update the style in every commit. Then remove the graft, which was resolved by the filter. See `git help filter-branch` and `git help repository-layout` for details.
-
Brad King authored
Update `.clang-format` with configuration to make the 6.0 format as close as possible to what 3.8 produced before. Then revise the style: * Indent preprocessor directives (a feature new since 3.8) * Add a newline and indentation before inheritance `:` and `,` Rename the Git attribute identifying the format to include the clang-format version number: `format.clang-format-6.0`. This will aid external infrastructure in knowing what version of the tool to run.
-
Brad King authored
Preserve manually-formatted blocks.
-
Brad King authored
-
86121ffd Utilities/Release: Update to openssl-1.1.0h Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2119
-
5852acff Autogen: Add AUTORCC configuration change test 41685c8b Autogen: Let AUTORCC generate output for all configurations 2930a198 Autogen: Add lock file to AUTORCC commands Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2117
-
bbbcbb1a TestDriver: Disable clang-tidy 'modernize-use-using' Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2118
-
1c5b1ad4 FindALSA: add testcase 6a64292f FindALSA: reformat docs 1c878448 FindALSA: provide an imported target Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2112