Skip to content

Instantly share code, notes, and snippets.

@hnakamur
Created September 1, 2012 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hnakamur/3568156 to your computer and use it in GitHub Desktop.
Save hnakamur/3568156 to your computer and use it in GitHub Desktop.
how to build lev with cmake + MinGW
# how to build lev with cmake + MinGW
mkdir ~/xming
cd ~/xming
curl -LO https://github.com/downloads/xming/lev/tarballs.tar.bz2
git clone https://github.com/xming/lev.git --recursive
cd lev
tar xf ../tarballs.tar.bz2
mkdir /tmp/lev
cd /tmp/lev
cmake -G "MSYS Makefiles" -DUSE_SYSTEM_LUAJIT=0 -DUSE_SYSTEM_OPENSSL=0 -D USE_SYSTEM_UV=0 -DUSE_SYSTEM_YAJL=0 -DUSE_SYSTEM_ZLIB=0 -DUSE_YAJL=1 -DUSE_ZLIB=1 -DUSE_OPENSSL=1 -DUSE_SYSTEM_HTTP_PARSER=0 -DUSE_HTTP_PARSER=1 ~/xming/lev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment