##// END OF EJS Templates
Added check for openGL support
Marek Rosa -
r1951:8ceebe0572c4
parent child
Show More
@@ -4,8 +4,7 CURRENTLY_BUILDING_COMPONENTS = "demos"
4 4 }
5 5
6 6 TEMPLATE = subdirs
7 SUBDIRS += chartthemes \
8 piechartcustomization \
7 SUBDIRS += piechartcustomization \
9 8 dynamicspline \
10 9 nesteddonuts \
11 10 qmlchart \
@@ -13,6 +12,12 SUBDIRS += chartthemes \
13 12 qmlf1legends \
14 13 qmlcustomizations \
15 14 qmlcustommodel \
16 qmloscilloscope \
17 chartviewer \
18 15 chartinteractions
16
17 contains(QT_CONFIG, opengl) {
18 SUBDIRS += chartthemes \
19 qmloscilloscope \
20 chartviewer
21 } else {
22 message("OpenGL not available. Some demos are disabled")
23 }
@@ -4,12 +4,13
4 4
5 5 TEMPLATE = subdirs
6 6 SUBDIRS += \
7 auto \
8 chartwidgettest \
7 auto \
9 8 qmlchartproperties \
10 9 qmlchartaxis
11 10
12 !linux-arm*: {
13 SUBDIRS += \
14 wavechart
11 contains(QT_CONFIG, opengl) {
12 SUBDIRS += chartwidgettest \
13 wavechart
14 } else {
15 message("OpenGL not available. Some test apps are disabled")
15 16 }
General Comments 0
You need to be logged in to leave comments. Login now