- 23 Aug, 2019 5 commits
-
-
Brad King authored
-
Brad King authored
5778880d CTest: Fix --show-only=json-v1 output with REQUIRED_FILES property Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3719
-
Brad King authored
971c7782 CrayPrgEnv: Change default linking mode based on PE version Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3716
-
Brad King authored
9b334397 Source sweep: Use cmStrCat for string concatenation Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Rolf Eike Beer <eike@sf-mail.de> Acked-by:
Daniel Pfeifer <daniel@pfeifer-mail.de> Merge-request: !3699
-
Kitware Robot authored
-
- 22 Aug, 2019 9 commits
-
-
Brad King authored
Merge-request: !3719
-
Brad King authored
Fixes: #19629
-
Brad King authored
Merge-request: !3716
-
Chuck Atkins authored
Beginning with the 19.06 release of the Cray Programming Environment, the default linking mode on XC Cray systems is dynamic instead of static. This updates the CrayPrgEnv compiler wrappers to detect the PE version being used and behave accordingly.
-
Sebastian Holtermann authored
This patch is generated by a python script that uses regular expressions to search for string concatenation patterns of the kind ``` std::string str = <ARG0>; str += <ARG1>; str += <ARG2>; ... ``` and replaces them with a single `cmStrCat` call ``` std::string str = cmStrCat(<ARG0>, <ARG1>, <ARG2>, ...); ``` If any `<ARGX>` is itself a concatenated string of the kind ``` a + b + c + ...; ``` then `<ARGX>` is split into multiple arguments for the `cmStrCat` call. If there's a sequence of literals in the `<ARGX>`, then all literals in the sequence are concatenated and merged into a single literal argument for the `cmStrCat` call. Single character strings are converted to single char arguments for the `cmStrCat` call. `std::to_string(...)` wrappings are removed from `cmStrCat` arguments, because it supports numeric types as well as string types. `arg.substr(x)` arguments to `cmStrCat` are replaced with `cm::string_view(arg).substr(x)`
-
Brad King authored
6ab28b94 cmCommand refactor: cmStringCommand 36f32d36 cmCommand refactor: cmSetPropertyCommand 7c83c192 cmCommand refactor: cmSetDirectoryPropertiesCommand 9413952c cmCommand refactor: cmCMakePolicyCommand 07ea93de cmCommand refactor: cmWriteFileCommand ca3b9186 cmCommand refactor: cmVariableWatchCommand b1acc711 cmCommand refactor: cmRemoveCommand 413a9603 cmCommand refactor: cmCMakeHostSystemInformationCommand ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3673
-
Brad King authored
d3310212 clang-tidy: isolate declarations for readability Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3704
-
Brad King authored
0148f1a8 FindBoost: Add note about header-only libs in warning msg Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3712
-
Kitware Robot authored
-
- 21 Aug, 2019 17 commits
-
-
Brad King authored
5edceff3 FindBZip2: Add Windows library names emitted from bzip2 1.0.6 makefile Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3711
-
Braden McDaniel authored
As of release 1.0.6, the bzip2 distribution includs a makefile for nmake on Windows that emits library names of the form `libbz2.lib`.
-
Brad King authored
bb6e95ca source_group: Improved generated filters tests Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3675
-
Brad King authored
d1758090 cmExportInstallFileGenerator: improve error message a1810089 cmInstallExportGenerator: add a method for the file destination Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3703
-
Brad King authored
be780747 cmDefinitions: Reduce allocation of keys and values in MakeClosure e07e2bc8 bootstrap: Compile cm::String c1787cb5 cpack.cxx: Re-order include blocks to follow our conventions 141e3074 cmConfigure.h: Tell windows.h not to define min/max macros Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3669
-
Brad King authored
891e670e install: print reason of failure Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Alex Turbov <i.zaufi@gmail.com> Merge-request: !3696
-
Brad King authored
66654135 ccmake: Fix form.h include with CMAKE_USE_SYSTEM_FORM Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3683
-
Brad King authored
3b51343e VS: Emit UTF-8 BOM for generated solution files Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3705
-
Brad King authored
2dfc5267 cmAlgorithms: Add cmContains Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Sebastian Holtermann <sebholt@web.de> Acked-by:
Daniel Pfeifer <daniel@pfeifer-mail.de> Merge-request: !3700
-
Brad King authored
1c87bc60 ProcessorCount: Fix virtual processor count on Solaris Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3694
-
Brad King authored
76b76a7f FindCUDA: Fix support for backslashes in CUDA_NVCC_INCLUDE_DIRS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3679
-
Brad King authored
c55fb044 cmBuildNameCommand: Implement as free function 86bf1eef cmState: Support free function disallowed commands Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3688
-
Brad King authored
-
Brad King authored
31b8b28f FindMPI: Restore MPI_<LANG>_COMPILE_FLAGS and MPI_<LANG>_COMPILE_OPTIONS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3710
-
Brad King authored
Merge-request: !3710
-
Robert Maynard authored
In commit e374b9f1 (FindMPI: Restore MPI_<LANG>_COMPILE_FLAGS as a command-line string, 2018-09-10, v3.12.3~6^2) we tried to restore the compile flags but accidentally inverted the arguments to `list(JOIN)` causing both `MPI_<LANG>_COMPILE_FLAGS` and `MPI_<LANG>_COMPILE_OPTIONS` to be empty. Issue: #18349
-
Kitware Robot authored
-
- 20 Aug, 2019 9 commits
-
-
Dennis Klein authored
-
wahikihiki authored
-
gaborbencze authored
-
gaborbencze authored
-
gaborbencze authored
-
gaborbencze authored
-
gaborbencze authored
-
gaborbencze authored
-
gaborbencze authored
-