Prior to Qt 5.12, we had QMAKE_CXXFLAGS += /std:c++latest in our .pri file but after Qt 5.12 both c++latest and c++14 are being set as visual studio command line parameters in the generated .vcxproj project file.
I can get to C++17 via config += c++17, but then I get this error: Command line warning D9025: overriding '/std:c++latest' with '/std:c++17'.
How do I use the latest C++ standard in Visual Studio 2019 when using project files created by qmake?  Said another way, how can I keep qmake from automatically inserting its own -std option?
Edit: I was wrong about c++14 automatically being applied. Another .pri file had set it.