blob: 8e53a6dd2b71596b59c7e021d458e090d071913b (
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
|
HEADERS = \
panel.h \
roundrectitem.h \
splashitem.h
SOURCES = \
panel.cpp \
roundrectitem.cpp \
splashitem.cpp \
main.cpp
RESOURCES = \
padnavigator.qrc
FORMS = \
backside.ui
contains(QT_CONFIG, opengl):QT += opengl
# install
target.path = $$[QT_INSTALL_EXAMPLES]/animation/padnavigator-ng
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS padnavigator.pro images
sources.path = $$[QT_INSTALL_EXAMPLES]/animation/padnavigator-ng
INSTALLS += target sources
|