Porting Linux application to windows
-
wrote on 6 Jan 2020, 06:10 last edited by
Getting error when im doing Porting Qt Linux application to Windows10.in linux working fine.
in both using same Qt kit used.QT details-
Windows 10 32 bit
Qt Creator 3.4.2 (opensource)
Based on Qt 5.5.0 (MSVC 2013, 32 bit)
compiler-MinGW 4.9.2 32bit
Qt version -Qt 5.5.0 MinGW 32bitgetting following error :fatal error: QX11EmbedContainer: No such file or directory
i tried following things but not working
- added QT += widgets in .pro fie
-
Getting error when im doing Porting Qt Linux application to Windows10.in linux working fine.
in both using same Qt kit used.QT details-
Windows 10 32 bit
Qt Creator 3.4.2 (opensource)
Based on Qt 5.5.0 (MSVC 2013, 32 bit)
compiler-MinGW 4.9.2 32bit
Qt version -Qt 5.5.0 MinGW 32bitgetting following error :fatal error: QX11EmbedContainer: No such file or directory
i tried following things but not working
- added QT += widgets in .pro fie
@Pranit-Patil said in Porting Linux application to windows:
QX11EmbedContainer
Quoting the docs:
"XEmbed is an X11 protocol that supports the embedding of a widget from one application into another application."
X11 is the Linux graphical stack, you cannot use that on any platform other than Linux.
So you will have to port your app away from that.
Regards
-
wrote on 6 Jan 2020, 08:41 last edited by
OK
THANK YOU
1/3