- 22 Aug, 2019 1 commit
-
-
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
-
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 21 commits
-
-
Justin Goshi authored
We write UTF-8-encoded content to the `.sln` files, so tell VS to read them as such. Fixes: #19594
-
Christoph Grüninger authored
Some distributions have form.h in ncurses/ next to the ncurses.h found by FindCurses. Fixes: #19589
-
Jon Chronopoulos authored
The previous code did not count the number of virtual processors across physical processors on SunOS. Can handle the following situations: ``` $ uname -a SunOS solaris 5.11 11.4.0.15.0 i86pc i386 i86pc $ psrinfo -p -v The physical processor has 1 virtual processor (0) x86 (GenuineIntel 306D2 family 6 model 61 step 2 clock 3492 MHz) Intel Core Processor (Broadwell) The physical processor has 1 virtual processor (1) x86 (GenuineIntel 306D2 family 6 model 61 step 2 clock 3492 MHz) Intel Core Processor (Broadwell) The physical processor has 1 virtual processor (2) x86 (GenuineIntel 306D2 family 6 model 61 step 2 clock 3492 MHz) Intel Core Processor (Broadwell) The physical processor has 1 virtual processor (3) x86 (GenuineIntel 306D2 family 6 model 61 step 2 clock 3492 MHz) Intel Core Processor (Broadwell) ``` ``` $ uname -a SunOS sol11x86 5.11 11.0 i86pc i386 i86pc $ psrinfo -p -v The physical processor has 2 virtual processors (0 1) x86 (GenuineIntel 50650 family 6 model 85 step 0 clock 2000 MHz) Intel(r) Xeon(r) Gold 6138 CPU @ 2.00GHz ``` ``` $ uname -a SunOS sol11 5.11 11.0 sun4v sparc sun4v $ psrinfo -p -v The physical processor has 2 cores and 16 virtual processors (0-15) The core has 8 virtual processors (0-7) The core has 8 virtual processors (8-15) SPARC-T4 (chipid 0, clock 2848 MHz) ```
-
Brad King authored
64aeb520 bash-completion: silent cmake -D lookup Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3692
-
Ben Boeckel authored
Following commit 49cfd390 (cmExportBuildFileGenerator: improve error message, 2019-06-26), improve the error message related to installed export sets by referencing the files which contain the exported target ambiguously.
-
Hong Xu authored
Backslashes in `CUDA_NVCC_INCLUDE_DIRS` cause syntax errors because it is written to a generated `.cmake` script as a string literal. Use a bracket argument to hold the expanded value as we already do for `CUDA_NVCC_COMPILE_DEFINITIONS`. Then explicitly convert backslashes to forward slashes.
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
Craig Scott authored
ccefe979 Help: Fix typo in ctest_coverage synopsis Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3706
-
Brad King authored
3c940696 Add --trace-redirect parameter to redirect trace output to a file Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3645
-
Brad King authored
6f6a32a0 Tutorial: Improve Step 9 6a35d630 Tutorial: Improve Step 8 61d4d990 Tutorial: Improve Step 7 a36731c6 Tutorial: Improve Step 6 df9cdf62 Tutorial: Improve Step 5 442c0f0d Tutorial: Improve Step 4 bc64401c Tutorial: Improve Step 3 49ce4d6f Tutorial: Improve Step 2 ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3528
-
Brad King authored
f4fc0667 FindOpenACC: Provide import targets and OpenACC_<lang>_OPTIONS variable 9460501a FindOpenACC: Provide a Fortran snippet that compiles with gfortran Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3670
-
Brad King authored
d56a4b16 Help: Restore installation of top-level index Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3701
-
Brad King authored
-
Brad King authored
154c5f79 ccmake: handle cache entries with empty STRINGS property Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3678
-
Muhammed Furkan USLU authored
Fixes: #19585
-
Sylvain Joubert authored
-
Kitware Robot authored
-
- 19 Aug, 2019 1 commit
-
-
Robert Maynard authored
Previously the FindOpenACC module had issues where the contents of OpenACC_<lang>_FLAGS could not be used with target_compile_options when it contained multiple compiler flags.
-