- Jan 11, 2019
-
-
Sean McBride authored
-
b91f6f39 VS: Track explicitly when platform is specified in generator name 89cc3d43 VS: Move platform name members to top-level global generator 40a73280 VS: Clarify global generator constructor interface 5ca7e505 Help: Document VS generator default platform selection Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2786
-
5e4887e6 VS: Honor WinCE deployment properties in VS 2010+ a4332cac Tests: Detect VS and SDK availability early Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2680
-
266808c4 FindBoost: Add support for Boost 1.70 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2747
-
fbb115d1 FindIce: Find slice2confluence and slice2matlab executables Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2773
-
b4444d60 Tests: Split CPack DEB and RPM tests into smaller tests 450131cc Tests: Add infrastructure to split up large CPack tests Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2742
-
74720a29 XL: Move '-bE' flag earlier so it can be overridden Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2771
-
5000fed5 FindBISON: Add policy CMP0088 to run bison in build tree Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2774
-
261ae28c Help: fix typo for CTEST_CUSTOM_TESTS_IGNORE Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2770
-
20b7826e Help: correct alphabetical sorting of lines Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2784
-
9922e70b Help: Prevent .so from being treated as a roff macro Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2756
-
5a5a1d90 Help: FindThreads not needed with modern C++. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2776
-
Kitware Robot authored
-
- Jan 10, 2019
-
-
By default, we generate an export list for a shared library and pass that file on the link line. The problem was that it could not be overridden by a target when a specific export file is being used. Multiple `-bE` flags on the link are overridden by subsequent `-bE` flags, so only the last one is used. Fixes: #13282
-
Kyle Edwards authored
The DEB and RPM tests are quite large, which can result in CTest clients timing out on these tests even though they're working properly. The RPM test in particular causes a lot of timeouts on the CMake dashboard machines. This change splits these tests into smaller tests so that they don't time out.
-
Kyle Edwards authored
This allows CPack generator tests to be split into smaller tests of the format "<generator>.<test>".
-
Move `.so` to the line above - otherwise it is being treated as a `roff` macro, i.e.: $ mandoc -Tlint /usr/local/man/man7/cmake-properties.7 | head -n 3 mandoc: /usr/local/man/man7/cmake-properties.7:1131:2: WARNING: .so is fragile, better use ln(1): so libraries. mandoc: /usr/local/man/man7/cmake-properties.7: ERROR: No such file or directory mandoc: /usr/local/man/man7/cmake-properties.7:1131:15: ERROR: .so request failed: .so libraries. and causes other issues down the line.
-
-
Brad King authored
-
Brad King authored
We no longer support any VS versions that pre-date support for multiple platforms (target architectures).
-
Brad King authored
Make the constructors protected since they should be produced through factories. Also rename `platform{ => InGenerator}Name` to clarify the meaning of the argument.
-
Brad King authored
-
163cc8bb VS: Convert WriteSLNHeader to non-virtual lookup table 6d99406e VS: Move ExpressEdition member to top-level generator 03f74a16 VS: Convert GetIDEVersion to non-virtual table lookup d07f453f VS: Convert GetToolsVersion to non-virtual table lookup 75773707 VS: Remove unused MSBuild XML parsing script 5395c526 cmake: Drop unused table entry for selecting default generator Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2780
-
67209a92 Tests: Add cases for ctest --show-only=json-v1 fc41a95f CTest: Add --show-only[=format] option to print test info 7b81d8c2 TestGenerator: Record support file and line where test was added 00530d74 Tests: Pass python interpreter into RunCMake.CTestCommandLine Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Merge-request: !2499
-
Brad King authored
-
2ec3363e Tests: Add cases for -{C,D,U} without a source tree 6d53a60f cmake: distinguish '-Cpath' from '-C path' in source dir parsing Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2783
-
cd32886b Autogen: Add AUTO(MOC|RCC|UIC)_EXECUTABLE target properties 9045f6a3 Autogen: Prepare for Qt 6 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2679
-
Allow to force moc/rcc/uic compiler used for AUTO(MOC|RCC|UIC). Setting these properties is only necessary if you are going to do strange things like build these tools as part of your own build system. Setting these properties will also prevent cmake from testing the binary: It is user-provided and assumed to be valid.
-
5bcfe98b Source: Fix various compiler warnings in Visual Studio 2017 70e245f1 cmAlgorithms: add utility functions to get signed size of containers Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2757
-
db89590f Help: CMakeTemplateStyle uses colors that better contrast. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2779
-
Brad King authored
-
Brad King authored
We no longer support any VS versions that pre-date introduction of express editions.
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
format can be 'human' to print the current text format or 'json-v1' to print the test object model in json format and is useful for IDEs who want to gather information about the tests. Defaults to 'human' format.