mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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.
17 lines
383 B
Prolog
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
|
|
}
|