-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When ASIO_STANDALONE is defined it still asks for <boost/thread.hpp> #980
Comments
do you link? |
@gocpplua Yes I have verified that the standalone headers are included, but by using the |
WIth Asio in standalone mode no boost libraries are required. Compiling in C++11 or later mode with a C++11 or later standard library is required. You will need to explicitly make sure that you are specifying a C++11 or later target via As such I'm not sure why it isn't picking them up? You can try forcing it by defining |
it works |
I am attempting to install. a library with asio and websocketpp as dependencies with GCC 8.1.0 on windows, and am encountering the exact same error. |
I have the same error in Qt Creator. I download the "websocketpp-0.8.2" folder and renamed it to "websocketpp-0.8.2-headers": pro
main.cpp
|
I tried it too. I have this error now:
pro
main.cpp
|
@8Observer8, I have the same problem. Did you find a solution? |
No, but I found another library. I had a problem with that library too, but I solved it: machinezone/IXWebSocket#529 (comment) Another solution is |
When trying to compile my program with the following (like in the client example.):
Returns the error that
I have verified that the standalone Asio headers are correctly included.
It is compiled on Windows using GCC 8.1.0 with C++17. Is it possible that there might be a bug here?
The text was updated successfully, but these errors were encountered: