2013-06-11 18:47:54 +00:00
|
|
|
QT += core gui quick
|
|
|
|
|
|
|
|
TARGET = graph
|
|
|
|
|
|
|
|
TEMPLATE = app
|
|
|
|
|
2019-09-12 15:03:52 +00:00
|
|
|
CONFIG += qmltypes
|
|
|
|
QML_IMPORT_NAME = Graph
|
|
|
|
QML_IMPORT_MAJOR_VERSION = 1
|
|
|
|
|
2013-06-11 18:47:54 +00:00
|
|
|
SOURCES += main.cpp \
|
|
|
|
graph.cpp \
|
|
|
|
noisynode.cpp \
|
|
|
|
gridnode.cpp \
|
|
|
|
linenode.cpp
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
graph.h \
|
|
|
|
noisynode.h \
|
|
|
|
gridnode.h \
|
|
|
|
linenode.h
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
graph.qrc
|
|
|
|
|
|
|
|
OTHER_FILES += \
|
2020-04-07 15:07:20 +00:00
|
|
|
main.qml
|
2013-06-11 18:47:54 +00:00
|
|
|
|
2016-05-11 12:41:47 +00:00
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/quick/scenegraph/graph
|
|
|
|
INSTALLS += target
|