slightly adopted for macOS

This commit is contained in:
suter_a 2017-04-11 11:36:55 +02:00
parent 815190d316
commit f6741a470a

View File

@ -10,8 +10,13 @@ packagesExist(QtWebKit) {
message("QtWebKit found")
HAVE_QT_WEB_ENGINE = 0
}
# Mac calls it Qt5WebKit, hence
packagesExist(Qt5WebKit) {
message("Qt5WebKit found")
HAVE_QT_WEB_ENGINE = 0
}
isEmpty(HAVE_QT_WEB_ENGINE) {
message("Neither QtWebKit nor Qt5WebEngine found. Something is wrong, please check")
message("Neither Qt(5)WebKit nor Qt5WebEngine found. Something is wrong, please check")
}
QMAKE_CXXFLAGS += -std=c++11