socket.io-client-cpp icon indicating copy to clipboard operation
socket.io-client-cpp copied to clipboard

What to do with socketio.lib?

Open TheScannerGuy opened this issue 3 years ago • 1 comments

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?

TheScannerGuy avatar Sep 17 '22 05:09 TheScannerGuy

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.

DraconPern avatar Sep 27 '22 07:09 DraconPern