[Windows] Fixed compile issue.

remotes/origin/falkon
S. Razi Alavizadeh 13 years ago
parent d64a86ab7e
commit eac8af1b51
  1. 2
      src/plugins/GreaseMonkey/GreaseMonkey.pro
  2. 7
      src/plugins/plugins.pro

@ -1,7 +1,7 @@
TARGET = $$qtLibraryTarget(GreaseMonkey)
os2: TARGET = GreaseMo
INCLUDEPATH += settings\
INCLUDEPATH += . settings\
DEPENDPATH += settings\
SOURCES += gm_plugin.cpp \

@ -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)
}

Loading…
Cancel
Save