353b160a4a
Cocoa is basically just AppKit + CoreData. Since we do not use CoreData in Qt, there is no reason to link to it or (transitively) import its headers. This is just a mechanical replacement of -framework Cocoa with -framework AppKit and <Cocoa/Cocoa.h> with <AppKit/AppKit.h> Change-Id: Ibcfc8a03c0ddff27a67fbc87dd7bd58a4b648956 Reviewed-by: Mika Lindqvist <postmaster@raasu.org> Reviewed-by: Morten Johan Sørvig <morten.sorvig@theqtcompany.com>
17 lines
288 B
Prolog
17 lines
288 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qfontdialog
|
|
|
|
QT += widgets widgets-private testlib
|
|
QT += core-private gui-private
|
|
|
|
SOURCES += tst_qfontdialog.cpp
|
|
|
|
RESOURCES += testfonts.qrc
|
|
|
|
osx {
|
|
# ### fixme
|
|
# OBJECTIVE_SOURCES += tst_qfontdialog_mac_helpers.mm
|
|
# LIBS += -framework AppKit
|
|
}
|
|
|