Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I added:

LIBS += 
       -lboost_system\                                                         
       -lboost_gregorian

To my projects .pro, but in Creator it says "cannot find -lboost_system". I tried using "UNCLUDEPATH" but that broke the path for all libraries.

Anyone have any ideas how to use boost::gregorian with Qt Creator?

EDIT: Below works to get it recognized, but breaks all other libraries.

INCLUDEPATH += /usr/include
LIBS += -L"/usr/include/boost" -lboost_system -lboost_gregorian

share|improve this question
See above... .. – user1106831 Nov 20 '12 at 20:31
What do you mean it broke path for all other libraries? – cpl Nov 21 '12 at 14:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.