Re: [CMake] Qt5 cmake imported target include path on MacOS

2019-10-22 Thread Christopher W. Steenwyk
As an additional piece if information, if I run cmake with "-G Xcode" the command line contains: - -F/usr/local/opt/qt/lib - -F/Users//src//xcode/bin but if I run cmake with "-G Ninja" the command line contains: - -iframework /usr/local/opt/qt/lib On Tue, Oct 22, 2019 at 11:50 AM Chr

[CMake] Qt5 cmake imported target include path on MacOS

2019-10-22 Thread Christopher W. Steenwyk
We are using the imported targets of Qt5 on macOS. When we do this the command line shows the include paths to the frameworks directory as "-F" where we would have expected "-iframework ". The former is leading the compiler to give us warnings when compiling the Qt provided header. Any ideas on ho