- Install boost, see Boost setup section.
- Use
git clone --recurse-submodules https://github.com/socketio/socket.io-client-cpp.gitto clone your local repo. - Run cmake -G "Visual Studio 12 2013" -DBOOST_ROOT:STRING= -DBOOST_VER:STRING= ./
- Run open generated project to build.
- Outputs is under
./build, link with the all static libs under./build/liband include headers under./build/includein your client code where you want to use it.
- CMake didn't allow merging static libraries,but they're all copied to
./build/lib, you can DIY if you like.