Skip to content

Commit

Permalink
Fix linking (in shadow builds)
Browse files Browse the repository at this point in the history
ld: cannot find -lqoauth
  • Loading branch information
dfaure committed Dec 23, 2014
1 parent 8b2f57f commit e1149ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/ft_interface/ft_interface.pro
Expand Up @@ -16,7 +16,8 @@ macx {
else:unix {
# the second argument (after colon) is for
# being able to run make check from the root source directory
LIBS += -Wl,-rpath,../../lib:lib
QMAKE_LFLAGS += -Wl,-rpath,../../lib:lib
LIBS += -L../../lib
}

CONFIG(debug, debug|release) {
Expand Down
3 changes: 2 additions & 1 deletion tests/ut_interface/ut_interface.pro
Expand Up @@ -16,7 +16,8 @@ macx {
else:unix {
# the second argument (after colon) is for
# being able to run make check from the root source directory
LIBS += -Wl,-rpath,../../lib:lib
QMAKE_LFLAGS += -Wl,-rpath,../../lib:lib
LIBS += -L../../lib
}

CONFIG(debug, debug|release) {
Expand Down

0 comments on commit e1149ef

Please sign in to comment.