diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-02-17 16:31:20 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-17 16:31:20 -0800 |
commit | 2677f3ca79f31c6aba1141d3402c888b57f20959 (patch) | |
tree | fe554a51cad4b321a7a9e4cad6dc77f6922c2b1c | |
parent | c10cc874275439d708e6a453670211a611158522 (diff) | |
download | subsurface-2677f3ca79f3.tar.gz |
LIBMARBLEDEVEL points to an install dir, not a build dir
Since we can't get correct include files out of the build directory
without some major hackery, we need to have LIBMARBLEDEVEL point to an
install destination.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | subsurface-configure.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subsurface-configure.pri b/subsurface-configure.pri index 05bfbb0f5..d2092d3ac 100644 --- a/subsurface-configure.pri +++ b/subsurface-configure.pri @@ -156,7 +156,7 @@ contains(QMAKE_PLATFORM, android): DEFINES += NO_MARBLE NO_USERMANUAL NO_PRINTIN !isEmpty(LIBMARBLEDEVEL) { # find it next to our sources INCLUDEPATH += $$LIBMARBLEDEVEL/include - LIBS += -L$$LIBMARBLEDEVEL/src/lib/marble + LIBS += -L$$LIBMARBLEDEVEL/lib } !contains(DEFINES, NO_MARBLE) { win32: CONFIG(debug, debug|release): LIBS += -lmarblewidgetd |