Migrate Visual Studio 2010 project to Linux with the help of QT.
-
Hi,
I am trying to migrate Visual Studio 2010 project to Linux with the help of QT. Can I have set of steps to follow. My Project is using following Dll's and headers/include files.
#using <mscorlib.dll>
#using <system.dll>
using namespace System;
using namespace System::Net;
using namespace System::Net::Sockets;
using namespace System::Text;
using namespace System::Threading;
using namespace System::IO;
using namespace System::Collections;
using namespace System::Data;
using namespace MySql::Data;
using namespace MySql::Data::MySqlClient;
using namespace System::Security::Cryptography;
using namespace INI;
using namespace System::Diagnostics;
using namespace System::Collections;
using namespace System::ServiceProcess;
using namespace System::ComponentModel;Thank you
Regards
Rabia -
Well... Take a look at the documentation of all the calls you use in those namespaces and try to find Qt equivalents. If they do not exist, well, rewrite them yourself, nobody can help you with that.
If your software is too deeply tied to Microsoft proprietary APIs, you should maybe think of doing a plain old rewrite using Qt and then use that as your mainline development for Windows AND Linux.