- 05 Oct, 2017 1 commit
-
-
Brad King authored
When running `hdiutil create`, specify the HFS+ filesystem explicitly. Otherwise `hdiutil` may choose a filesystem based on the host. We do not want to create APFS images for `.dmg` packages because they may not mount on macOS versions prior to 10.12. This was missed in commit 39b50975 (CPack: Fix .dmg HFS+ creation on macOS APFS hosts, 2017-10-02). Reported-by: Alan Garny
-
- 02 Oct, 2017 7 commits
-
-
Brad King authored
When running `hdiutil create`, specify the HFS+ filesystem explicitly. Otherwise `hdiutil` may choose a filesystem based on the host. We do not want to create APFS images for `.dmg` packages because they may not mount on macOS versions prior to 10.12.
-
ec30129b CPack: put local variable on the stack Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1331
-
6bbc1e77 Autogen: Add release notes for (CMAKE_)AUTOMOC_COMPILER_PREDEFINES 75c98b5e Autogen: Doc: Add documentation for (CMAKE_)AUTOMOC_COMPILER_PREDEFINES 1d7f099d Autogen: Add (CMAKE_)AUTOMOC_COMPILER_PREDEFINES Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1328
-
c044b9ae FindBoost: Improve messages when a Boost CMake package is found Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1330
-
90f1b9ad Merge branch 'upstream-KWSys' into update-kwsys 4532b035 KWSys 2017-09-30 (f108739d) Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1333
-
aa640cc2 Tests: Fix CudaOnly.WithDefs test on CUDA 9 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1329
-
Kitware Robot authored
-
- 01 Oct, 2017 1 commit
-
-
Kitware Robot authored
-
- 30 Sep, 2017 3 commits
-
-
Brad King authored
* upstream-KWSys: KWSys 2017-09-30 (f108739d)
-
Code extracted from: https://gitlab.kitware.com/utils/kwsys.git at commit f108739dd90f06787a955212cf475bbbb111252d (master). Upstream Shortlog ----------------- Brad King (1): 41c93d97 Remove unnecessary testIOS Rolf Eike Beer (2): caaef6bb testSystemTools: avoid strcpy() a5046656 SystemTool: remove unused Convert*MacroString()
-
Kitware Robot authored
-
- 29 Sep, 2017 17 commits
-
-
Rolf Eike Beer authored
-
Brad King authored
Add a test for this case to verify the messages. This test will also be valuable to cover this code path in which we've had several regressions recently.
-
Brad King authored
CUDA 9 dropped support for `compute_20`, so use a different alternative.
-
Sebastian Holtermann authored
-
fe37b994 CUDA: Add support for requesting C++98 under CUDA 9 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1315
-
Sebastian Holtermann authored
Also adds the documentation for CMAKE_<LANG>_COMPILER_PREDEFINES_COMMAND. Closes #17275
-
Sebastian Holtermann authored
-
f8cb9944 Find native build tool after determining the target system Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1317
-
29849376 try_compile: Simplify generator platform and toolset propagation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1318
-
49dab3eb VS: Add VS_SHADER_OUTPUT_HEADER_FILE and VS_SHADER_VARIABLE_NAME properties. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1319
-
da470525 ExternalProject: Refactor code introducing _ep_get_complete_stampfile Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1323
-
a245f850 FindMatlab: Fix extraction of quoted version number Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1316
-
93c8d55d Autogen: Update (CMAKE_)AUTOMOC_MACRO_NAMES release notes 084ace47 Autogen: Tests: Update AUTOMOC_MACRO_NAMES test 08041dd1 Autogen: Doc: Update documentation for (CMAKE_)AUTOMOC_MACRO_NAMES 7b33d67b Autogen: Create info file directory before writing 786b5be0 Autogen: Define all macro names in CMAKE_AUTOMOC_MACRO_NAMES Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1321
-
ff6a5125 Autogen: Doc: Add examples to the SKIP_AUTO* documentations 8831818f Autogen: Doc: Update CMP0071 description b0775c75 Autogen: Offer solution for CMP0071 in warning message Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1322
-
b8018135 Use C++11 '= delete' instead of CM_EQ_DELETE 42f4e697 Drop unused CMake_HAVE_CXX_UNIQUE_PTR macro Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1326
-
77f674be Fix some occurrences of readability-braces-around-statements f0bab294 Convert some leftover loops to C++11 range-based loop b5d7f5b0 Fix occurrences of readability-non-const-parameter 9a2da339 Fix some occurrences of readability-avoid-const-params-in-decls 870dd06d Fix left-over occurrences of else-after-return 2033abff Fix minor clang-tidy findings 79b8c380 Improve several occurrences of vector::push_back in loops a45928cd Fix some occurrences of missing override keywords ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1292
-
Kitware Robot authored
-
- 28 Sep, 2017 11 commits
-
-
Brad King authored
We now require C++11 support including `= delete`. Drop use of the old compatibility macro.
-
Brad King authored
We now require C++11 `std::unique_ptr` support from the compiler, so none of our code is conditioned on the macro.
-
9e0362ca Remove checks for auto_ptr that we no longer need 94e67fa1 cpack: Fix compilation on Cygwin after auto_ptr removal Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1320
-
Fix issues diagnosed by clang-tidy [readability-braces-around-statements] Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-
Fix issues diagnosed by clang-tidy [modern-loop-convert] Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-
Fix issues diagnosed by clang-tidy [readability-non-const-parameter] The patch separates the definitions of the function headers for the two variants (CMAKE_USE_ELF_PARSER or not) and comments out the parameter names to not consider them for any const-ness in the case they are actually not even looked at. Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-
Fix issues diagnosed by clang-tidy [readability-avoid-const-params-in-decls] Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-
Fix issues diagnosed by clang-tidy [readability-else-after-return] These were mostly only showing up on OSX. Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-
Fix issues diagnosed by clang-tidy - modernize-use-bool-literals - misc-string-integer-assignment - performance-faster-string-find - readability-redundant-string-cstr - readability-delete-null-pointer Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-
Fix issues diagnosed by clang-tidy by pre-allocating the vector capacity before the loop [performance-inefficient-vector-operation]. Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-
Fix issues diagnosed by clang-tidy [modernize-use-override]. These occurrences are only showing up on OSX. Signed-off-by:
Matthias Maennich <matthias@maennich.net>
-