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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
android|winrt {
error( "This example is not supported for android or winrt." )
}
!include( ../examples.pri ) {
error( "Couldn't find the examples.pri file!" )
}
QT += widgets
requires(qtConfig(fontcombobox))
requires(qtConfig(combobox))
SOURCES += main.cpp \
bargraph.cpp \
graphmodifier.cpp \
rainfalldata.cpp \
variantdataset.cpp \
variantbardataproxy.cpp \
variantbardatamapping.cpp \
scattergraph.cpp \
scatterdatamodifier.cpp \
surfacegraph.cpp \
surfacegraphmodifier.cpp \
highlightseries.cpp \
topographicseries.cpp \
scattergraphwidget.cpp \
surfacegraphwidget.cpp
HEADERS += \
bargraph.h \
graphmodifier.h \
rainfalldata.h \
variantdataset.h \
variantbardataproxy.h \
variantbardatamapping.h \
scattergraph.h \
scatterdatamodifier.h \
surfacegraph.h \
surfacegraphmodifier.h \
highlightseries.h \
topographicseries.h \
scattergraphwidget.h \
surfacegraphwidget.h
RESOURCES += widgetgraphgallery.qrc
OTHER_FILES += doc/src/* \
doc/images/* \
data/*
|