Closed eternaltao closed 8 years ago
cmake -DBOOST_LIBRARYDIR=~/boost_1_59_0/stage/lib -DBOOST_INCLUDEDIR=~/boost_1_59_0/boost -DBOOST_ROOT:STRING=~/boost_1_59_0 -DCMAKE_BUILD_TYPE=Debug ./
make install
when compile, LIBS choose ../build/lib/Debug/libsioclient_tls.a add "-lssl -lcrypto"
g++ -Wall -g -std=c++0x -o client client.cpp $(INCLUDE) $(LIBS) -lboost_system -lboost_thread -lpthread -lssl -lcrypto
And then we can connect wss:// or https
I want to connect a URL like https://xxx and reports error as below:
my compilation of the command line:
Do I lack some steps?