How can I compile an app with boost.thread from within Qt Creator 0.9?
I'm new to this whole makefiles thing. I've used Geany in the past, mostly.
Printable View
How can I compile an app with boost.thread from within Qt Creator 0.9?
I'm new to this whole makefiles thing. I've used Geany in the past, mostly.
just add in the .pro file
where XXX is the boost build id (something like gcc42 by default)Code:
LIBS += -lboost_thread-mt-XXX INCLUDEPATH += <where your boost includes are>