From 159cc27e56e7692e2369b5caa332b3193c0ffc85 Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Mon, 2 May 2016 14:10:18 +0100 Subject: [PATCH] Move the new Win32 SQLite variable paths to the existing Win32 scope --- src/src.pro | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/src.pro b/src/src.pro index 4685115a..4184f73e 100644 --- a/src/src.pro +++ b/src/src.pro @@ -148,6 +148,11 @@ win32 { LIBPATH_QSCINTILLA = $$LIBPATH_QSCINTILLA/release } QMAKE_CXXFLAGS += -DCHECKNEWVERSION + + # Added SQLite installation path variables, matching our setup guide + LIBS += -L$$PWD/../../../dev/SQLite/ -lsqlite3 + INCLUDEPATH += $$PWD/../../../dev/SQLite + DEPENDPATH += $$PWD/../../../dev/SQLite } mac { RC_FILE = macapp.icns @@ -168,8 +173,3 @@ DEPENDPATH += $$PWD/../libs/antlr-2.7.7 $$PWD/../libs/qhexedit $$PWD/../libs/qcu # Rules for creating/updating {ts|qm}-files include(i18n.pri) - -# Added paths to the SQLite installation -win32: LIBS += -L$$PWD/../../../dev/SQLite/ -lsqlite3 -INCLUDEPATH += $$PWD/../../../dev/SQLite -DEPENDPATH += $$PWD/../../../dev/SQLite