- May 07, 2021
-
-
Kitware Robot authored
-
- May 06, 2021
-
-
Based on the implementation in Terminal.c:kwsysTerminalStreamIsVT100.
-
Kitware Robot authored
-
- May 05, 2021
-
-
Fixes: #21792
-
Brad King authored
NMake version 9 and above support UTF-8 encoded makefiles with a BOM.
-
Brad King authored
Run `nmake -?` and extract the version from its output. Use a timeout because Watcom tools come with a `nmake` tool that always waits for user input on `-?`.
-
Kitware Robot authored
-
- May 04, 2021
-
-
friendlyanon authored
Fixes: #19712
-
friendlyanon authored
Issue: #19712
-
Kitware Robot authored
-
- May 03, 2021
-
-
Fixes: #22104
-
Thomas Vaughan authored
Fixes: #22108
-
Kitware Robot authored
-
- May 02, 2021
-
-
Kitware Robot authored
-
- May 01, 2021
-
-
friendlyanon authored
-
Kitware Robot authored
-
- Apr 30, 2021
-
-
Kyle Edwards authored
Fixes: #22123
-
Kitware Robot authored
-
- Apr 29, 2021
-
-
Brad King authored
-
Kitware Robot authored
-
- Apr 28, 2021
-
-
Robert Maynard authored
In v3 of the presets, the `--toolchain` command line argument now has a preset mapping.
-
Marc Chevrier authored
Fixes: #20553
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
Kitware Robot authored
-
- Apr 27, 2021
-
-
Brad King authored
Tell `MSBuild` to use the same `Platform` that we generate into the `VCTargetsPath` detection project. Fixes: #22068
-
The compile options `--march=<arch>` and `--mcpu=<cpu>` and the link option `--cpu=<cpu>` are automatically added by CMake based on `CMAKE_SYSTEM_PROCESSOR` or `CMAKE_SYSTEM_ARCH`. But this is not sufficient, because armclang also supports enabling or disabling features using `+<feature>`: -mcpu=<name>[+[no]<feature>+...] For example: -mcpu=cortex-a57+nocrypto+nofp+nosimd+crc (Reference: https://developer.arm.com/documentation/dui0774/k/Compiler-Command-line-Options/-mcpu?lang=en) The problem is, even if a project adds a flag with features it needs, CMake still adds flags, resulting in code that is compiled with wrong CPU features and unable to run. Add policy `CMP0123` to not automatically add compile or link options, and let projects set them instead. Co-Author: Brad King <brad.king@kitware.com> Fixes: #21173
-
Kitware Robot authored
-
- Apr 26, 2021
-
-
Detect MSYS as CYGWIN, with the required adaptations.
-
Zack Galbreath authored
Addresses #18654
-
Kitware Robot authored
-
- Apr 25, 2021
-
-
Kitware Robot authored
-
- Apr 24, 2021
-
-
Kitware Robot authored
-
- Apr 23, 2021
-
-
Jörg Bornemann authored
Consider the case where the find_package call for QtCore is wrapped in a function call. Then AutoGen cannot determine the Qt version, because it only looks at variables and directory properties. The former don't leave the function scope and the latter are not set by default. As a fallback, locate the moc executable via its target and call it with the --version argument to determine the Qt version. Issue: #22028
-
Kitware Robot authored
-