- Nov 26, 2019
-
-
a033bafb Help: Clarify how tests are run if no resource spec file is specified a64ba023 CTest: Clarify that resource requirements can be split f9f294f5 CTest: Add version field to resource spec file Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4080
-
Fixes: #19985
-
6d84afc7 Merge branch 'backport-implicit-includes-extra-CR' into implicit-includes-extra-CR 4b46523d CMakeParseImplicitIncludeInfo: Remove all CR chars from compiler output 2a5e5b25 CMake 3.15.5 08173075 Merge branch 'doc-genex-tweak' into release-3.15 83dbef11 Merge branch 'InstallRequiredSystemLibraries-redist' into release-3.15 881bca24 Merge branch 'vs-v142-csharp-flags' into release-3.15 dec3e936 Merge branch 'backport-vs-16.4-global-targets' into release-3.15 ac1a1bf1 VS: Tell VS 16.4 not to verify CMake-provided custom command outputs Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4088
-
Brad King authored
-
cb8042b0 FindODBC: Add library name for MinGW toolchains Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4076
-
43ffd2c3 Unity: No repeated path for internal generated unity files Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4077
- Nov 25, 2019
-
-
Brad King authored
With Clang/LLVM on MinGW, lines ending in `\r\r\n` have been observed. Filter out all `\r` characters from these line endings. Fixes: #20021
-
Fixes: #20018
-
Kyle Edwards authored
Add a note to the documentation to clarify this, and add test cases to ensure it. Fixes: #19987
-
Kyle Edwards authored
Fixes: #20007
-
a5bb08a8 FindwxWidgets: Fix finding both release and debug libs Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4079
-
Cristian Adam authored
Fixes: #20002
-
- Nov 22, 2019
-
- Nov 21, 2019
-
-
1e68fb0c Xcode: Set source file type for Objective C/C++ Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4073
-
84408ff4 FindwxWidgets: Find wxQt debug libraries Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4069
-
- Nov 20, 2019
- Nov 18, 2019
-
-
ff6c3361 Swift: support `-rpath` on Darwin Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4059
-
f935de67 Swift: support `INSTALL_NAME_DIR` on Darwin Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4060
-
Darwin also has the concept of RPATH. Additionally, the flag is identical to that on other Unixish platforms. Simply avoid the `-rpath` handling on Windows. This enables the use of `BUILD_WITH_INSTALL_RPATH` and `INSTALL_RPATH` with Swift targets on Darwin.
-
Adjust the shared object rule to ensure that we honour the `INSTALL_NAME_DIR` property on Swift targets. This enables the use of `INSTALL_NAME_DIR` and `BUILD_WITH_INSTALL_NAME_DIR` on Darwin with Ninja.
-
229f2cc5 Help: Clarify compile features handling for OBJC and OBJCXX Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4057
-
7d6ab5dc CPack: Restore support for custom package configuration templates Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kyle Edwards <kyle.edwards@kitware.com> Merge-request: !4054
-
cc88ede7 Help: Provide guidance on INTERFACE for target_precompile_headers() dae9a808 Help: Reorganise target_precompile_headers() docs for readability Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4045
-
bb4c2781 PCH: Do not issue an error on duplicate target_precompile_headers call Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4046
-
02aa03eb Tutorial: replace Unicode EN DASH with ASCII dash Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4058
- Nov 17, 2019
-
-
Unicode EN DASH is problematic: - it cannot be easily found in web browsers, editors etc. - it doesn't work when copied and run in the terminal
-
Craig Scott authored
-
- Nov 15, 2019
-
-
Brad King authored
Refactoring in commit 98617f1b (Refactor: Move CPack internal files to `Internal/CPack/` directory, 2019-07-09, v3.16.0-rc1~449^2) accidentally changed the public-facing names of the templates. The name passed to `FindTemplate` is searched in `CMAKE_MODULE_PATH` and should not change. Remove the `Internal/CPack/` prefix on the names added by that commit. Teach `FindTemplate` to use our builtin default directly when the public-facing name is not found in `CMAKE_MODULE_PATH`. Fixes: #19979
-
Fixes: #19970
-
6a818b69 ObjC: Proper initialization of ObjC/XX standard properties Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !4050
-
d2e5e6ff Tests: Organize Objective C/C++ test directories Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4051
-
e8bd920d Tests: Fix reliance on undefined behavior of cm::optional Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !4049
-
24ae45fb FindPostgreSQL: also search for libraries in the MacPorts suffix Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4043
-
- Nov 14, 2019
-
-
Fix logic added by commit 81566557 (ObjC: Initialize ObjC/XX standard properties from C/C++ counterparts, 2019-11-09) to account for cases when the CXX standard is not explicitly set. Also, do not copy the `*_STANDARD_REQUIRED` and `*_EXTENSIONS` properties unless we copied the `*_STANDARD` property.
-
Brad King authored
Move them all under `Tests/ObjC` and `Tests/ObjCXX`.
-
- Nov 13, 2019
-
-
Kyle Edwards authored
The test for cm::optional assumed that *opt would return a reference to a non-constructed object if opt.has_value() is false. However, on certain systems that build CMake with flags to harden the build, this condition aborts rather than returning the invalid reference. Fix this by getting the reference only when the cm::optional is known to actually have a value. Fixes: #19964
-
c921ec61 FindwxWidgets: Add link dependencies for MinGW Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4040
-