-
Notifications
You must be signed in to change notification settings - Fork 0
c++ dev setup
crcn edited this page Mar 9, 2012
·
8 revisions
- Do NOT use cygwin - apps compiled in cygwin depend on cygwin. Apps compiled in mingw can run without mingw.
- Windows 2008 32 bit
- Mingw
- node.js
- git - install THIRD option
- Link Shell Extension - used to setup symlinks for browsers
- imagemagick - used to take screenshots
- all devel - Sublime
You'll need to first manually download curl: http://curl.haxx.se/download/curl-7.20.0.tar.gz
Next, copy the following shell script to C:\Users\Administrator\Documents\Development\bootstrap\install-devel.sh
:
#!/bin/bash
echo "Installing Dev Dependencies"
# first install curl
cd /c/Users/Administrator/Downloads
tar -xf curl-7.20.0.tar.gz
cd curl-7.20.0
./configure --prefix=/mingw
make
make install
next, open mingw
, and call:
cd ~/Documents/Development/bootstrap
./install-devel.sh