##// END OF EJS Templates
Add test to common build
Add test to common build

File last commit:

r34:6c759135fcbb
r34:6c759135fcbb
Show More
chartwidgettest.pro
33 lines | 570 B | text/idl | PrologLexer
Michal Klocek
Add test to common build
r34 !include( ../../common.pri ) {
error( Couldn't find the common.pri file! )
}
!include( ../../internal.pri ) {
error( Couldn't find the internal.pri file! )
}
Tero Ahola
New features like chart type to the test app
r5 TARGET = chartwidgettest
TEMPLATE = app
QT += core gui
contains(QT_MAJOR_VERSION, 5) {
QT += widgets
}
OBJECTS_DIR = tmp
MOC_DIR = tmp
SOURCES += main.cpp \
Tero Ahola
Drafting scatter type plotting...
r8 mainwidget.cpp \
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 # qscatterseries.cpp \
# qseriespointgraphicsitem.cpp \
dataseriedialog.cpp
Tero Ahola
New features like chart type to the test app
r5
HEADERS += \
Tero Ahola
Drafting scatter type plotting...
r8 mainwidget.h \
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 # qscatterseries.h \
# qseriespointgraphicsitem.h \
dataseriedialog.h
Michal Klocek
Add test to common build
r34