0
|
1 |
SOURCES += main.cpp composition.cpp
|
|
2 |
HEADERS += composition.h
|
|
3 |
|
|
4 |
SHARED_FOLDER = ../shared
|
|
5 |
|
|
6 |
include($$SHARED_FOLDER/shared.pri)
|
|
7 |
|
|
8 |
RESOURCES += composition.qrc
|
|
9 |
contains(QT_CONFIG, opengl) {
|
|
10 |
DEFINES += QT_OPENGL_SUPPORT
|
|
11 |
QT += opengl
|
|
12 |
}
|
|
13 |
|
|
14 |
# install
|
|
15 |
target.path = $$[QT_INSTALL_DEMOS]/composition
|
|
16 |
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.png *.jpg *.pro *.html
|
|
17 |
sources.path = $$[QT_INSTALL_DEMOS]/composition
|
|
18 |
INSTALLS += target sources
|
|
19 |
|
|
20 |
symbian: include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
|
|
21 |
|
|
22 |
win32-msvc* {
|
|
23 |
QMAKE_CXXFLAGS += /Zm500
|
|
24 |
QMAKE_CFLAGS += /Zm500
|
|
25 |
}
|
|
26 |
|
|
27 |
wince* {
|
|
28 |
DEPLOYMENT_PLUGIN += qjpeg
|
|
29 |
}
|