I am trying to compile my Urho3D application with Boost ASIO/Beast. MinGW complains:
#error WinSock.h has already been included
The Internet suggests the solution is to include the Boost libraries before including windows.h
but, of course, I am not including windows.h
, Urho3D is. I have tried including the Boost headers before Urho3DAll.h
but that does not help.
The Linux build compiles and runs fine.
Any ideas?