简体   繁体   中英

How to debug xcode project in qt?

I want to embed some UI written using Qt and QML via QMacNativeWidget. And I want to debug QML using Qt Creator, cause I can't debug QML with XCode. Do you know if it's possible?

You can debug Qt/QML in Xcode since it's essentially just a regular C/C++ project. The only thing you need is a proper Xcode project ( .xcodeproj ).

You could use CMake for project configuration/generation instead of relying on QtCreator's .pro format. With CMake you could switch between IDEs (project generators is the better term) on demand and try things out when it gets OS specific.

If that's not an option (there might be several reasons), you still can generate an Xcode project from an existing .pro solution via qmake in the command line:

qmake -spec macx-xcode project.pro

This can be found in the Qt for macOS section of the docs.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM