blob: 60ed7ba2a177f9f4225b71a083d05abfcd4ffe03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
HEADERS = imagemodel.h \
mainwindow.h \
pixeldelegate.h
SOURCES = imagemodel.cpp \
main.cpp \
mainwindow.cpp \
pixeldelegate.cpp
RESOURCES += images.qrc
# install
target.path = $$[QT_INSTALL_EXAMPLES]/itemviews/pixelator
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro images
sources.path = $$[QT_INSTALL_EXAMPLES]/itemviews/pixelator
INSTALLS += target sources
symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri)
maemo5: include($$QT_SOURCE_TREE/examples/maemo5pkgrules.pri)
|