blob: d32516b08797f99451ebd235921044a2073af868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TARGET = grapher
SOURCES = grapher.cpp
win32 {
# On Windows, uncomment the following lines to build a plugin that can
# be used also in Internet Explorer, through ActiveX.
# CONFIG += qaxserver
# LIBS += -lurlmon
RC_FILE = grapher.rc
} else:mac {
QMAKE_INFO_PLIST = Info.plist
REZ_FILES += grapher.r
rsrc_files.files = grapher.rsrc
rsrc_files.path = Contents/Resources
QMAKE_BUNDLE_DATA += rsrc_files
}
include(../../src/qtbrowserplugin.pri)
|