blob: e97af6d5e86f2f4ca62b37adb396e77c23a4ee7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
TEMPLATE = app
HEADERS += remotecontrol.h
SOURCES += main.cpp \
remotecontrol.cpp
FORMS += remotecontrol.ui
RESOURCES += remotecontrol.qrc
# install
target.path = $$[QT_INSTALL_EXAMPLES]/help/remotecontrol
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro *.png *.doc doc
sources.path = $$[QT_INSTALL_EXAMPLES]/help/remotecontrol
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|