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.
Thanks in advance.
Follow up:
Step 1: installing cygwin
a) http://cygwin.com/setup.exe
b) C:/cygwin
c) make sure checked all gcc/g++/svn/wget etc...
d) installed :)
Step 2: install apt-cyg (good if it was default)
svn --force export http://apt-cyg.googlecode.com/svn/trunk/ /bin/
Step 3: figured out that, this are related libraries for your apps
apt-cyg install libxml2 iconv bison flex pkg-config
Step 4: install Linux apps to Windows apps
wget site/download/staffs
tar xvfz staffs.tar.gz # your time saver apps
./configure
make
make install

Done, it works!!