Hi,
I'm currently working with Boost 1.44 and QT Creator 2.9.2. I try to link my libraries but I got the following error message :
What is strange is that I previously build it without problem !!! Does someone has an idea of the problem ?C:\PolarLights\Studio\PureLight\PureLight-build-desktop/../Device.cpp:145: error: undefined reference to `_imp___ZN5boost6thread9interruptEv'
In my "pro" file I have this :
Thanks for your helpQT -= core gui
QT += opengl
TARGET = PureLight
TEMPLATE = lib
CONFIG += dll
DEFINES += PURELIGHT_LIBRARY
...
INCLUDEPATH += "C:/Boost_1_44_0"
DEPENDPATH += "C:/Boost_1_44_0"
win32:CONFIG(release, debug|release): LIBS += "C:/Boost_1_44_0/lib/libboost_thread.a"
else:win32:CONFIG(debug, debug|release): LIBS += "C:/Boost_1_44_0/lib/libboost_thread.a"
Bookmarks