summaryrefslogtreecommitdiffstats
path: root/demos/shared/shared.pro
blob: 78aaaefe48da3138945fa295f4921a804091dc46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
TEMPLATE = lib
CONFIG += static

contains(QT_CONFIG, opengl)|contains(QT_CONFIG, opengles1)|contains(QT_CONFIG, opengles2) {
	DEFINES += QT_OPENGL_SUPPORT
	QT += opengl widgets
}

build_all:!build_pass {
    CONFIG -= build_all
    CONFIG += release
}
TARGET = demo_shared
QT += gui-private widgets

SOURCES += \
	arthurstyle.cpp\
	arthurwidgets.cpp \
	hoverpoints.cpp

HEADERS += \
	arthurstyle.h \
	arthurwidgets.h \
	hoverpoints.h

RESOURCES += shared.qrc

# install
target.path = $$[QT_INSTALL_DEMOS]/qtbase/shared
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.pri images
sources.path = $$[QT_INSTALL_DEMOS]/qtbase/shared
INSTALLS += sources

!cross_compile:INSTALLS += target

symbian {
    TARGET.UID3 = 0xA000A63C
    CONFIG += qt_demo
}