I would like to port an existing Linux application from its plain C/C++ source code to Windows XP/Vista/7 exactly same functionality to have, without losing few modules here and there etc. Basic codes are fine to build, but problem is the application I will be porting have other Linux dependencies.
Question: How can I port a C/C++ code which has other libraries dependencies, to Windows system? Using MinGW. Is there any IDE where I can do that? Or first of all I need to find out dependent libraries. And then finally build the main application?
Would it be possible to advise, a hello world for such application or reference to any resource which really works. Because I tried myself and i get fail building the other dependencies it has using MinGW. Follow up:
installing Cygwin
- http://cygwin.com/setup.exe
- C:/cygwin
- make sure checked all gcc/g++/svn/wget etc...
install apt-cyg (good if it was default)
wget rawgit.com/transcode-open/apt-cyg/master/apt-cyg install apt-cyg /binfigured out that, this are related libraries for your apps
apt-cyg install libxml2 iconv bison flex pkg-configinstall Linux apps to Windows apps
wget site/download/staffs tar xvfz staffs.tar.gz # your time saver apps ./configure make make install