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