##// END OF EJS Templates
Emit hover leave signal from PieSliceItem when it gets destroyed....
Emit hover leave signal from PieSliceItem when it gets destroyed. This fixes the problem with the drilldown demo highlight getting stuck when switching series.

File last commit:

r1021:6adbaffea565
r1083:b264b1ddc4c8
Show More
charts.pro
39 lines | 1.1 KiB | text/idl | PrologLexer
!include(config.pri) {
error('Missing config.pri')
}
TEMPLATE = subdirs
SUBDIRS = src qmlplugin examples demos test
development_build: message('Development build')
!system_build:{
message('Configured for local build against local libs...')
message('You can run "make" to build qchart library, examples, demos and plugin...')
message('You can run "make install" to install qchart in qt sdk...')
} else {
message('Running build aginst system libs...')
message('Building only charts library...')
message('Afterwards you can run "cd examples; qmake ; make " to build examples.')
SUBDIRS = src
}
CONFIG += ordered
QMAKE_CXXFLAGS += -g -Wall
unix:QMAKE_DISTCLEAN += -r build bin include lib doc/html
win32:QMAKE_DISTCLEAN += /Q /s build bin include lib doc\\html
# install feature file
feature.path = $$[QT_INSTALL_DATA]/mkspecs/features
feature.files = $$PWD/features/qtcommercialchart.prf
INSTALLS += feature
docs.target = docs
win32:{
docs.commands = qdoc3 $$CHART_BUILD_DOC_DIR\\qcharts.qdocconf
}else{
docs.commands = qdoc3 $$CHART_BUILD_DOC_DIR/qcharts.qdocconf
}
docs.depends = FORCE
QMAKE_EXTRA_TARGETS += docs