@Pl45m4
Solution Explorer, right click on the project name -> Qt -> "Upgrade to latest Qt project format version". -- this is no longer an option on the Qt menu!! I have not been able to update Qt_INCLUDEPATH_!
@eramne Is it working for you now? I've got a problem linking FFmpeg with static Qt, which I've logged at https://bugreports.qt.io/browse/QTBUG-115052 but if it's working for you, feel free to mark this as Solved
Hi,
AFAIK, it has nothing to do with macOS.
Usually the -- means that what follows will by passed as is to a process started by the script / command / other that you are invoking.
I finally found a solution which seems to work in my case. I added the Qt.MSWindowsFixedSizeDialogHint window flag, which seems to fix the issue.
So below is the modified code:
ApplicationWindow
{
// common properties
id: awMainForm
width: 602
height: 728
flags: Qt.Window | Qt.FramelessWindowHint | Qt.MSWindowsFixedSizeDialogHint
visible: true
// form content isn't relevant
...
}