OSCAR-code/OSCAR_QT.pro
Norman Heino 1657d2bb1f Disable dark mode in macOS
Until there is a correct implementation for dark mode colors, dark mode
is disabled. To this end a Info.plist template was placed under
Building/MacOS, containing the required setting.
2019-05-14 06:46:27 +02:00

17 lines
383 B
Prolog

lessThan(QT_MAJOR_VERSION,5)|lessThan(QT_MINOR_VERSION,9) {
message("You need to Qt 5.9 or newer to build OSCAR with Help Pages")
lessThan(QT_MAJOR_VERSION,5)|lessThan(QT_MINOR_VERSION,7) {
error("You need Qt 5.7 or newer to build OSCAR")
}
}
TEMPLATE = subdirs
SUBDIRS += oscar
CONFIG += ordered
macx: {
QMAKE_INFO_PLIST = Building/MacOS/Info.plist.in
}