Skip to content

Commit

Permalink
Add qmake option to support libboost-xyz-mt suffix (needed for pybombs).
Browse files Browse the repository at this point in the history
  • Loading branch information
csete committed Aug 4, 2013
1 parent 7d0775b commit b4e8103
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions gqrx.pro
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#-------------------------------------------------
#--------------------------------------------------------------------------------
#
# Qmake project file for gqrx - http://gqrx.dk
#
#-------------------------------------------------
# Common options you may want to passs to qmake:
#
# CONFIG+=debug Enable debug mode
# PREFIX=/some/prefix Installation prefix
# BOOST_SUFFIX=-mt To link against libboost-xyz-mt (needed for pybombs)
#--------------------------------------------------------------------------------

QT += core gui svg
contains(QT_MAJOR_VERSION,5) {
Expand Down Expand Up @@ -185,7 +190,7 @@ unix {
}

unix:!macx {
LIBS += -lboost_system -lboost_program_options
LIBS += -lboost_system$$BOOST_SUFFIX -lboost_program_options$$BOOST_SUFFIX
LIBS += -lrt # need to include on some distros
}

Expand Down

0 comments on commit b4e8103

Please sign in to comment.