You are not linking against boost, you just told your compiler where to look for it but you didn't tell it to actually look for it. Add a LIBS += -l<libname> entry to your project file. By the way... What Boost ASIO does, Qt already does. So maybe it's easier to just port your code to Qt to get rid of the additional dependency.
Bookmarks