From eac8af1b5196005f86de8d20122ac19c8b0bd201 Mon Sep 17 00:00:00 2001 From: "S. Razi Alavizadeh" Date: Mon, 17 Jun 2013 03:46:50 +0430 Subject: [PATCH] [Windows] Fixed compile issue. --- src/plugins/GreaseMonkey/GreaseMonkey.pro | 2 +- src/plugins/plugins.pro | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/plugins/GreaseMonkey/GreaseMonkey.pro b/src/plugins/GreaseMonkey/GreaseMonkey.pro index fc4388d6f..a3dc461da 100644 --- a/src/plugins/GreaseMonkey/GreaseMonkey.pro +++ b/src/plugins/GreaseMonkey/GreaseMonkey.pro @@ -1,7 +1,7 @@ TARGET = $$qtLibraryTarget(GreaseMonkey) os2: TARGET = GreaseMo -INCLUDEPATH += settings\ +INCLUDEPATH += . settings\ DEPENDPATH += settings\ SOURCES += gm_plugin.cpp \ diff --git a/src/plugins/plugins.pro b/src/plugins/plugins.pro index f5afe16bf..d8af76f04 100644 --- a/src/plugins/plugins.pro +++ b/src/plugins/plugins.pro @@ -5,7 +5,9 @@ defineTest(addSubdir) { entries = $$files($$subdir/*) for(entry, entries) { fullPath = $$replace(entry, ;,"") + fullPath = $$replace(fullPath, \\\\, /) name = $$replace(fullPath, $$re_escape("$$subdir/"), "") + win32: fullPath = $$lower($$fullPath) exists($$fullPath/*.pro): SUBDIRS += $$fullPath } } @@ -27,3 +29,8 @@ outOfDirPlugins = $$(QUPZILLA_PLUGINS_SRCDIR) # GnomeKeyringPasswords only with GNOME_INTEGRATION !contains(DEFINES, "GNOME_INTEGRATION"): SUBDIRS -= $$PWD/GnomeKeyringPasswords !system(pkg-config --exists gnome-keyring-1): SUBDIRS -= $$PWD/GnomeKeyringPasswords + +win32 { + SUBDIRS -= $$lower($$PWD/KWalletPasswords) + SUBDIRS -= $$lower($$PWD/GnomeKeyringPasswords) +}