summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Merge topic 'binutils-var-private' into release-3.20Brad King2021-04-071-10/+10
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4d786dfcfa BinUtils: Avoid clobbering a variable named without a private prefix Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5986
* | \ \ \ \ \ Merge topic 'binutils-var-private'Brad King2021-04-071-10/+10
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4d786dfcfa BinUtils: Avoid clobbering a variable named without a private prefix Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5986
| * | | | | | BinUtils: Avoid clobbering a variable named without a private prefixBrad King2021-04-071-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactoring in commit b12aec6c8d (BinUtils: prefer bin utils matching the compiler version extension, 2020-12-11, v3.20.0-rc1~171^2) accidentally leaked a `TOOL` variable. Name temporary variables with a private prefix. Fixes: #22035
* | | | | | | Merge branch 'release-3.20'Brad King2021-04-070-0/+0
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Merge topic 'ios-rpath-linker-flag' into release-3.20Brad King2021-04-074-9/+13
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4aed96e230 Apple: Set CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG on non-macOS too Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5980
* | \ \ \ \ \ \ Merge topic 'ios-rpath-linker-flag'Brad King2021-04-074-9/+13
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4aed96e230 Apple: Set CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG on non-macOS too Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5980
| * | | | | | | Apple: Set CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG on non-macOS tooCraig Scott2021-04-064-9/+13
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since CMake 3.19, we no longer support macOS SDKs older than 10.5, which corresponds to Xcode 3. Supporting older Xcode versions for device platforms is also not realistic. We therefore expect the -rpath linker option should always be supported now. When targeting iOS, tvOS or watchOS, the previous disabling of -rpath support meant that the install_name_dir of shared libraries and frameworks was unable to use @rpath. This resulted in embedding absolute paths for their install_name. When they were embedded in an app bundle, this would cause the app to fail at runtime. By enabling the -rpath linker option, the default install_name_dir is now @rpath for these platforms, which results in binaries that do work at runtime. Fixes: #20036
* | | | | | | Merge topic 'FindHDF5-find-fortran-modules-automatically'Brad King2021-04-071-19/+48
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cd48433e96 FindHDF5: add compiler-specific module search paths 78287ec0af FindHDF5: track the "main" library for each language 3654068e80 FindHDF5: find include directories after the library Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5977
| * | | | | | | FindHDF5: add compiler-specific module search pathsBen Boeckel2021-04-061-2/+17
| | | | | | | |
| * | | | | | | FindHDF5: track the "main" library for each languageBen Boeckel2021-04-061-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will be used to build up additional include paths to search.
| * | | | | | | FindHDF5: find include directories after the libraryBen Boeckel2021-04-061-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some include paths might depend on the library location (primarily for Fortran).
* | | | | | | | Merge topic 'autouic-source-group-fixes'Brad King2021-04-076-14/+33
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e8ddc1e268 Autogen: Fix a bug in setting the UIC source group 7f0151dc91 Help: Document the AUTOUIC_SOURCE_GROUP property f6c47dd0b4 Help: Fix a typo in the AUTOGEN_SOURCE_GROUP help Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Alexey Edelev <alexey.edelev@qt.io> Merge-request: !5978
| * | | | | | | | Autogen: Fix a bug in setting the UIC source groupDuncan Barber2021-04-041-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the relative path to a UI file was empty then the source group for the corresponding autogen header file would not apply because of a double slash in the path.
| * | | | | | | | Help: Document the AUTOUIC_SOURCE_GROUP propertyDuncan Barber2021-04-045-12/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This property came into existence with the changes in b4a103bdecc437d37580d0ab540f6014006d661c because generated files are now being added for UIC.
| * | | | | | | | Help: Fix a typo in the AUTOGEN_SOURCE_GROUP helpDuncan Barber2021-04-041-1/+1
| | | | | | | | |
* | | | | | | | | CMake Nightly Date StampKitware Robot2021-04-071-1/+1
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | Merge branch 'release-3.20'Brad King2021-04-060-0/+0
|\ \ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | |
| * | | | | | | Merge branch 'release-3.19' into release-3.20Brad King2021-04-060-0/+0
| |\ \ \ \ \ \ \
* | \ \ \ \ \ \ \ Merge branch 'release-3.19'Brad King2021-04-060-0/+0
|\ \ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | / / | |_|_|_|_|_|/ / |/| | | | | | |
| * | | | | | | CMake 3.19.8v3.19.8Brad King2021-04-061-1/+1
| | | | | | | |
* | | | | | | | Merge branch 'release-3.20'Brad King2021-04-060-0/+0
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | |
| * | | | | | | Merge topic 'ci-linux-updates' into release-3.20Brad King2021-04-067-3/+18
| |\ \ \ \ \ \ \ | | | |_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c6a45968d6 ci: Enable jq-based tests on Linux builds 8ca8b74a96 ci: add jq and DevIL to Debian and Fedora base images Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !5987
* | | | | | | | Merge topic 'ci-linux-updates'Brad King2021-04-068-3/+21
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1035848e9c ci: Enable FindDevIL tests on Linux builds be023ff4db Merge branch 'backport-ci-linux-updates' into ci-linux-updates c6a45968d6 ci: Enable jq-based tests on Linux builds 8ca8b74a96 ci: add jq and DevIL to Debian and Fedora base images Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !5987
| * | | | | | | ci: Enable FindDevIL tests on Linux buildsBrad King2021-04-063-0/+3
| | | | | | | |
| * | | | | | | Merge branch 'backport-ci-linux-updates' into ci-linux-updatesBrad King2021-04-067-3/+18
| |\ \ \ \ \ \ \ |/ / / / / / / / | | | _ / / / / | | | / / / /
| * | | | | | ci: Enable jq-based tests on Linux buildsBrad King2021-04-063-0/+3
| | | | | | |
| * | | | | | ci: add jq and DevIL to Debian and Fedora base imagesBrad King2021-04-064-3/+15
| |/ / / / /
* | | | | | Merge branch 'release-3.20'Brad King2021-04-060-0/+0
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge branch 'release-3.19' into release-3.20Brad King2021-04-060-0/+0
| |\ \ \ \ \ | | |/ / / /
* | | | | | Merge branch 'release-3.19'Brad King2021-04-060-0/+0
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Merge branch 'backport-3.19-rel-file-table' into release-3.19Brad King2021-04-064-20/+64
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'release-3.18' into release-3.19Brad King2021-04-0610-0/+409
| |\ \ \ \ \ \
* | \ \ \ \ \ \ Merge branch 'release-3.18'Brad King2021-04-060-0/+0
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | |
| * | | | | | | Merge branch 'backport-3.18-rel-file-table' into release-3.18Brad King2021-04-0610-0/+409
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge-request: !5961
* | \ \ \ \ \ \ \ Merge branch 'release-3.20'Brad King2021-04-060-0/+0
|\ \ \ \ \ \ \ \ \ | | |_|_|_|/ / / / | |/| | | | | | |
| * | | | | | | | Merge topic 'rel-file-table' into release-3.20Brad King2021-04-0610-0/+473
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e17006c497 Utilities/Release: Add deprecation fields to File Table v1 89ab613248 Utilities/Release: Update file table for 3.20.0 c5777e5421 Merge branch 'backport-3.19-rel-file-table' into rel-file-table f9f59fb0b2 Merge branch 'release-3.19' into backport-3.19-rel-file-table 30959aec8f Utilities/Release: Update file table for 3.19.3 d206c8f1ec Merge tag 'v3.19.3' into backport-3.19-rel-file-table 004dbbaddd Utilities/Release: Update file table for 3.19.2 1e3301a28c Merge tag 'v3.19.2' into backport-3.19-rel-file-table ... Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Reviewed-by: Craig Scott <craig.scott@crascit.com> Merge-request: !5961
* | \ \ \ \ \ \ \ \ Merge topic 'rel-file-table'Brad King2021-04-069-0/+468
|\ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / | |/| | | | | | / / | |_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e17006c497 Utilities/Release: Add deprecation fields to File Table v1 89ab613248 Utilities/Release: Update file table for 3.20.0 c5777e5421 Merge branch 'backport-3.19-rel-file-table' into rel-file-table f9f59fb0b2 Merge branch 'release-3.19' into backport-3.19-rel-file-table 30959aec8f Utilities/Release: Update file table for 3.19.3 d206c8f1ec Merge tag 'v3.19.3' into backport-3.19-rel-file-table 004dbbaddd Utilities/Release: Update file table for 3.19.2 1e3301a28c Merge tag 'v3.19.2' into backport-3.19-rel-file-table ... Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Ben Boeckel <ben.boeckel@kitware.com> Reviewed-by: Craig Scott <craig.scott@crascit.com> Merge-request: !5961
| * | | | | | | | Utilities/Release: Add deprecation fields to File Table v1Brad King2021-04-051-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Provide a field for clients to check now so that we can deprecate things later.
| * | | | | | | | Utilities/Release: Update file table for 3.20.0Brad King2021-04-053-23/+23
| | | | | | | | |
| * | | | | | | | Merge branch 'backport-3.19-rel-file-table' into rel-file-tableBrad King2021-04-0510-0/+453
| |\ \ \ \ \ \ \ \ | | | |_|_|_|/ / / | | |/| | | | | |
| | * | | | | | | Merge branch 'release-3.19' into backport-3.19-rel-file-tableBrad King2021-04-0568-187/+591
| | |\ \ \ \ \ \ \
| | * | | | | | | | Utilities/Release: Update file table for 3.19.3Brad King2021-04-054-6/+48
| | | | | | | | | |
| | * | | | | | | | Merge tag 'v3.19.3' into backport-3.19-rel-file-tableBrad King2021-04-0545-95/+723
| | |\ \ \ \ \ \ \ \
| | * | | | | | | | | Utilities/Release: Update file table for 3.19.2Brad King2021-04-054-18/+20
| | | | | | | | | | |
| | * | | | | | | | | Merge tag 'v3.19.2' into backport-3.19-rel-file-tableBrad King2021-04-05207-602/+1642
| | |\ \ \ \ \ \ \ \ \
| | * \ \ \ \ \ \ \ \ \ Merge branch 'backport-3.18-rel-file-table' into backport-3.19-rel-file-tableBrad King2021-04-0510-0/+409
| | |\ \ \ \ \ \ \ \ \ \ | | | | |_|_|_|_|/ / / / | | | |/| | | | | | | |
| | | * | | | | | | | | Utilities/Release: Add script to generate a table of filesBrad King2021-04-059-0/+404
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: #22002
| | | * | | | | | | | | Tests: Add RunCMake helper to run a plain scriptBrad King2021-03-311-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many tests covering CMake scripting commands can work without initializing a full generator.
* | | | | | | | | | | | Merge topic 'Test_min_version'Brad King2021-04-0665-66/+66
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f6b4db365a Tests: bump cmake_minimum_required version to 2.8.12 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5979
| * | | | | | | | | | | | Tests: bump cmake_minimum_required version to 2.8.12Rolf Eike Beer2021-04-0565-66/+66
| | |_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This needlessly produces warnings during the test runs that no-one sees but that are distracting when actually inspecting the logs.