626283740f
- Correct install path of widget examples to contain widgets directory in target tree. - Add missing resources. Task-number: QTBUG-27977 Change-Id: If4cb117998892b0b165d7678367553d3a7553b91 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
24 lines
608 B
Prolog
24 lines
608 B
Prolog
HEADERS = mainwindow.h \
|
|
pieceslist.h \
|
|
puzzlewidget.h
|
|
RESOURCES = puzzle.qrc
|
|
SOURCES = main.cpp \
|
|
mainwindow.cpp \
|
|
pieceslist.cpp \
|
|
puzzlewidget.cpp
|
|
|
|
QMAKE_PROJECT_NAME = dndpuzzle
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/widgets/draganddrop/puzzle
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.jpg
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/widgets/draganddrop/puzzle
|
|
INSTALLS += target sources
|
|
|
|
wince*: {
|
|
addFile.files = example.jpg
|
|
addFile.path = .
|
|
DEPLOYMENT += addFile
|
|
}
|
|
QT += widgets
|