Skip to content

Commit

Permalink
Use the boost_program_options installed from brew for Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
exiaoy committed Jul 13, 2013
1 parent cb20f24 commit 6aa70ce
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion glogg.pro
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,13 @@ HEADERS += \

isEmpty(BOOST_PATH) {
message(Building using system dynamic Boost libraries)
LIBS += -lboost_program_options
macx {
INCLUDEPATH += /usr/local/include
LIBS += -L/usr/local/lib -lboost_program_options-mt
}
else {
LIBS += -lboost_program_options
}
}
else {
message(Building using static Boost libraries at $$BOOST_PATH)
Expand Down

0 comments on commit 6aa70ce

Please sign in to comment.