Visual Studio to Qt creator conversion
-
wrote on 27 May 2021, 06:04 last edited by
We have a GUI that is built using visual studio 2015 and Qt 5.9.9. This GUI is developed in Windows 10. Now we want to compile and run this GUI in Linux/Ubuntu. Is there any work around for this. Any help would be appreciated.
-
We have a GUI that is built using visual studio 2015 and Qt 5.9.9. This GUI is developed in Windows 10. Now we want to compile and run this GUI in Linux/Ubuntu. Is there any work around for this. Any help would be appreciated.
@pavel213 said in Visual Studio to Qt creator conversion:
Is there any work around for this
What work around do you mean? Qt is portable and available for Linux.
What build system do you use? If it is qmake or CMake then simply install Qt on Linux and build your project. -
wrote on 27 May 2021, 06:20 last edited by
Thanks for reply.
GUI is build in Visual studio using Qt tools. It is not built in Qt creator. Its a visual studio solution having .sln extension.
I want to build and run this GUI in Linux for Linux users. -
Thanks for reply.
GUI is build in Visual studio using Qt tools. It is not built in Qt creator. Its a visual studio solution having .sln extension.
I want to build and run this GUI in Linux for Linux users. -
Thanks for reply.
GUI is build in Visual studio using Qt tools. It is not built in Qt creator. Its a visual studio solution having .sln extension.
I want to build and run this GUI in Linux for Linux users.@pavel213 In this case you need to generate pro file for qmake, see https://stackoverflow.com/questions/56275229/generating-qt-pro-files-from-sln-file
You can also switch to CMake instead as it is more future prove and is also supported by Visual Studio. -
wrote on 27 May 2021, 06:41 last edited by
I am using MSBuild build system.
-
@pavel213 As I wrote: you need to port either to QMake or CMake.
1/7