summaryrefslogtreecommitdiffstats
path: root/examples/draganddrop/puzzle/puzzle.pro
blob: 0d3a5dab2e5b193b2b5aabd6f0c0ecd101f563c1 (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
25
26
27
28
29
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/draganddrop/puzzle
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.jpg
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/draganddrop/puzzle
INSTALLS += target sources

symbian:{
   TARGET.UID3 = 0xA000CF65
   CONFIG += qt_example
   addFile.files = example.jpg
   addFile.path = .
   DEPLOYMENT += addFile
}
wince*: {
   addFile.files = example.jpg
   addFile.path = .
   DEPLOYMENT += addFile
}