d32f47b703
Fix style issues along the way. Change-Id: Ic6a6de28e198eb0b14c198b802e78845703909b9 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
23 lines
459 B
Prolog
23 lines
459 B
Prolog
QT += widgets
|
|
|
|
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]/widgets/draganddrop/puzzle
|
|
INSTALLS += target
|
|
|
|
wince {
|
|
addFile.files = example.jpg
|
|
addFile.path = .
|
|
DEPLOYMENT += addFile
|
|
}
|