mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-26 22:27:06 +08:00
18 lines
403 B
Prolog
18 lines
403 B
Prolog
QT += widgets
|
|
requires(qtConfig(filedialog))
|
|
|
|
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
|