'QDialog' file not found error occur on compilation Using QT Frameworks for Create Dialog in CS6 Plugin
Copy link to clipboard
Copied
Dear Friends,
We want to modify one CS6 plugin. That plugin was created with using XCode 5 and QT for Dialog creation.
We try to compile this plugin source on XCode 9.3 with same CS6 version.
But Compilation error occur on it.
In this plugin have to use 4 framework . We also using this same framework to compile.
But the following error was occur.
CODING
#include <QDialog>
ERROR
'QDialog' file not found.
Actually QDialog.h file was placed on QtWidgets.framework.
We also try to change framework path in XCode property with current framework placed location.
We are also try to set as like below format.
CODING
#include <QtWidgets/QDialog>
ERROR
'QtWidgets/QDialog' file not found.
but it is also occur same error.
How to solve this problem?
Is there have i make any mistake to call header files from framework replay to me.
Is they have any idea about that problem, please help me.
we need your helps to solve this problem.
Explore related tutorials & articles
Copy link to clipboard
Copied
Try
#include <QDialog.h>
Instead of
#include <QDialog>
Copy link to clipboard
Copied
Hai Friend,
Thanks for Replay. I was already try this but it can not work .
Because all the system frameworks was supported but new added QTFrameworks are only this problem occur.
I need more help from you.
Please note: I have one another method to solve this problem but i does not known it is correct method or not kindly please help me.
And also have more error occur based on migration of XCode 5 to XCode 9.3.
If Possible please guid me for what are the property of XCode need to change for this migration and More details about QTFrameworks.

