- 08 Nov, 2019 14 commits
-
-
Sergey Larin authored
Now you can set a background image and it's parameters in productbuild and PackageMaker based installers.
-
Brad King authored
-
Brad King authored
a7d9c5e7 CTestCoverageCollectGCOV: Fix typo in ctest_coverage_collect_gcov docs Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4016
-
Brad King authored
a7d9c5e7 CTestCoverageCollectGCOV: Fix typo in ctest_coverage_collect_gcov docs Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4016
-
Brad King authored
-
Brad King authored
f35df783 Help: Document target_precompile_headers genex with angle brackets Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4015
-
Brad King authored
f35df783 Help: Document target_precompile_headers genex with angle brackets Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4015
-
Brad King authored
24d52daf FindOpenSSL: Lookup all pkg-config directories Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4010
-
Brad King authored
b2857514 FindBinUtils: Revert "Use the compiler to get the path to compiler tools" Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4009
-
Brad King authored
-
Brad King authored
b2857514 FindBinUtils: Revert "Use the compiler to get the path to compiler tools" Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4009
-
Kitware Robot authored
-
- 07 Nov, 2019 25 commits
-
-
Kyle Edwards authored
c1435d98 Help: Fix error in resource allocation example eb9d945f CTest: Rename hardware -> resources for RunCMake tests c544cb66 CTest: Rename hardware -> resources for source code 6ce27d3a cmCTestMultiProcessHandler: Rename resource locking functions a7c1e15c CTest: Rename hardware -> resources for CMake variables, command options 73a40b19 CTest: Rename "Processes" lexer to "ResourceGroups" af9ed543 CTest: Rename PROCESSES test property to RESOURCE_GROUPS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3994
-
Kyle Edwards authored
-
Kyle Edwards authored
016601e5 Merge branch 'backport-ctest-resource-groups' c1435d98 Help: Fix error in resource allocation example eb9d945f CTest: Rename hardware -> resources for RunCMake tests c544cb66 CTest: Rename hardware -> resources for source code 6ce27d3a cmCTestMultiProcessHandler: Rename resource locking functions a7c1e15c CTest: Rename hardware -> resources for CMake variables, command options 73a40b19 CTest: Rename "Processes" lexer to "ResourceGroups" af9ed543 CTest: Rename PROCESSES test property to RESOURCE_GROUPS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3994
-
Denis Thulin authored
When using a custom sysroot to build things using pkg-config, some of the output variables feature the sysroot while others do not: ```console $ export PKG_CONFIG_SYSROOT_DIR=/path/to/sysroot $ export PKG_CONFIG_LIBDIR=/path/to/sysroot/usr/lib/pkgconfig $ pkg-config --cflags-only-I openssl -I/path/to/sysroot/usr/include/ $ pkg-config --variable=includedir openssl /usr/include $ pkg-config --libs-only-L openssl -L/path/to/sysroot/usr/lib $ pkg-config --variable=libdir openssl /usr/lib ``` When using `pkg_check_modules`, it's pretty much the same: ```cmake pkg_check_modules(_OPENSSL QUIET openssl) _OPENSSL_INCLUDE_DIRS == /path/to/sysroot/usr/include/ _OPENSSL_INCLUDEDIR == /usr/include _OPENSSL_LIBRARY_DIRS == -L/path/to/sysroot/usr/lib _OPENSSL_LIBDIR == /usr/lib ``` However, FindOpenSSL only searches for headers in `INCLUDEDIR` and libraries in `LIBDIR` instead of searching `INCLUDE_DIRS` and `LIBRARY_DIRS` as well. This fixes that behaviour. Fixes: #16885Signed-off-by:
Denis Thulin <denis.thulin@enyx.fr>
-
Brad King authored
53227a4f Refactor: Modernize `foreach` code and fix some bugs Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3986
-
Brad King authored
-
Brad King authored
7ddf4623 Unity build: Include GENERATED files into unity build Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Julien Schueller <schueller@phimeca.com> Merge-request: !4001
-
Brad King authored
7ddf4623 Unity build: Include GENERATED files into unity build Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Julien Schueller <schueller@phimeca.com> Merge-request: !4001
-
Brad King authored
-
Brad King authored
f0c00bec CMakeVersion.rc: Fix build with llvm-rc Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4003
-
Brad King authored
f0c00bec CMakeVersion.rc: Fix build with llvm-rc Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4003
-
Brad King authored
-
Brad King authored
9a7b4f47 ObjC: Mark explicitly the language for compilation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4002
-
Brad King authored
9a7b4f47 ObjC: Mark explicitly the language for compilation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4002
-
Brad King authored
-
Brad King authored
-
Brad King authored
Merge-request: !4008
-
Brad King authored
0faeb6a4 FindBoost: Prevent warning due to new meta-component "ALL" of Boost 1.73 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4008
-
Deniz Bahadir authored
-
Brad King authored
Merge-request: !4007
-
Brad King authored
aeae4182 FindPostgreSQL: support version encoding used in pre-10 releases Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4007
-
Ben Boeckel authored
With the 10.x release, PostgreSQL upstream started encoding the version as `MMmmmm` where `M` is major and `m` is minor. Prior to that, `MMmmPP` was used where `P` was the patch number. Detect this difference and decode it based on the used encoding. Fixes: #19912
-
Kitware Robot authored
-
- 06 Nov, 2019 1 commit
-
-
Kyle Edwards authored
2a67ebf7 cmGeneratorTarget: modernize memory management Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3997
-