blob: d0fb4993afc93ecd873daa8c537a72a5939891dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
HEADERS = mandelbrotwidget.h \
renderthread.h
SOURCES = main.cpp \
mandelbrotwidget.cpp \
renderthread.cpp
unix:!mac:!symbian:!vxworks:!integrity:LIBS += -lm
# install
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/threads/mandelbrot
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS mandelbrot.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/threads/mandelbrot
INSTALLS += target sources
symbian: CONFIG += qt_example
maemo5: CONFIG += qt_example
|