socket.io-client-cpp
socket.io-client-cpp copied to clipboard
What to do with socketio.lib?
I followed the Cmake installation instructions which generated a visual studio project. I then built the project which generated a sioclient.lib file in socket.io-client-cpp/Release, no folder named build was created like in the instructions. I assume I'm missing something because there is no build folder or am I supposed to include the sioclient.lib file?
the build folder is for linux/osx I think. in Windows it's either Release or Debug. You should put sioclient.lib in your link library setting in your project. Note that you can only link either sioclient.lib or sioclient_tls.lib, but not both. Obviously you should use the tls version for release version.