Visual Studio to Qt creator conversion
-
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. -
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.