Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Help: Consolidate 3.20 release notes | Brad King | 2021-02-10 | 1 | -7/+0 |
| | | | | | Run the `Utilities/Release/consolidate-relnotes.bash` script to move notes from `Help/release/dev/*` into `Help/release/3.20.rst`. | ||||
* | MSVC: Do not add /GR to CMAKE_CXX_FLAGS by default | Brad King | 2020-11-13 | 1 | -0/+7 |
The `/GR` flag has been on by default since MSVC cl 14.0 from VS 2005. Remove it from the default flags to make it easier for projects to pass `/GR-` themselves to turn it off. Projects may be using string processing to replace `/GR` with another flag, so we cannot simply drop it. Add a policy to drop it in a compatible way. Fixes: #21428 |