mirror of https://github.com/qt/qtcharts.git
Moved manual tests to separate directory.
This allows publishing autotests. Git export attributes changed accordingly. Change-Id: I6db2eb52dabdb8f12e0bc2a992a873abfa15b1a5 Reviewed-by: Titta Heikkala <titta.heikkala@theqtcompany.com>
This commit is contained in:
parent
c6ed50e684
commit
69f73db4ec
|
@ -2,5 +2,4 @@
|
|||
.gitignore export-ignore
|
||||
.gitattributes export-ignore
|
||||
.commit-template export-ignore
|
||||
tests export-ignore
|
||||
tools export-ignore
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
.gitattributes export-ignore
|
||||
manual export-ignore
|
|
@ -1,4 +1,4 @@
|
|||
!include( ../tests.pri ) {
|
||||
!include( ../../tests.pri ) {
|
||||
error( "Couldn't find the test.pri file!" )
|
||||
}
|
||||
|
|
@ -1,4 +1,6 @@
|
|||
!include( ../tests.pri ):error( "Couldn't find the tests.pri file!" )
|
||||
!include( ../../tests.pri ) {
|
||||
error( "Couldn't find the test.pri file!" )
|
||||
}
|
||||
include(charts/charts.pri)
|
||||
TARGET = chartviewer
|
||||
QT += opengl
|
|
@ -1,4 +1,4 @@
|
|||
!include( ../tests.pri ) {
|
||||
!include( ../../tests.pri ) {
|
||||
error( "Couldn't find the test.pri file!" )
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
TEMPLATE = subdirs
|
||||
SUBDIRS += \
|
||||
presenterchart \
|
||||
polarcharttest \
|
||||
boxplottester
|
||||
|
||||
contains(QT_CONFIG, opengl) {
|
||||
SUBDIRS += chartwidgettest \
|
||||
wavechart \
|
||||
chartviewer
|
||||
} else {
|
||||
message("OpenGL not available. Some test apps are disabled")
|
||||
}
|
||||
|
||||
qtHaveModule(quick) {
|
||||
SUBDIRS += qmlchartproperties \
|
||||
qmlchartaxis
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
!include( ../tests.pri ) {
|
||||
!include( ../../tests.pri ) {
|
||||
error( "Couldn't find the test.pri file!" )
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
!include( ../tests.pri ) {
|
||||
error( "Couldn't find the examples.pri file!" )
|
||||
!include( ../../tests.pri ) {
|
||||
error( "Couldn't find the test.pri file!" )
|
||||
}
|
||||
|
||||
TARGET = presenterchart
|
||||
HEADERS += chartview.h
|
||||
SOURCES += main.cpp chartview.cpp
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue