##// END OF EJS Templates
Remove exploding from piechartdrilldown example
Remove exploding from piechartdrilldown example

File last commit:

r998:310fbd27a8f1
r1020:c1297009de69
Show More
charts.pro
40 lines | 1.2 KiB | text/idl | PrologLexer
Michal Klocek
Improves build configuration...
r996 !include(config.pri) {
error('Missing config.pri')
Michal Klocek
Add test to common build
r34 }
Michal Klocek
Adds examples to common build
r32 TEMPLATE = subdirs
Michal Klocek
Improves build configuration...
r996 SUBDIRS = src qmlplugin examples demos test
Michal Klocek
Adds private headers handling...
r193
Michal Klocek
Updates development_build option
r998 development_build: message('Development build')
Michal Klocek
Improves build configuration...
r996 local_build:{
message('Configured for local build against local libs...')
message('You can run "make" to build qchart library, examples and demos...')
Tero Ahola
Examples, tests and qmlplugin are now built for non-integr. builds
r197 } else {
Tero Ahola
Fixed integrated build on mac
r558 message('Running build aginst system libs...')
Michal Klocek
minor. typo
r997 message('Building only charts library...')
Michal Klocek
Improves build configuration...
r996 message('You can run "make install" to build and install charts.')
message('Afterwards you can run "cd examples; qmake ; make " to build examples.')
message('Run qmake CONFIG+=local_build' to build everything at once.)
SUBDIRS = src
Michal Klocek
Adds private headers handling...
r193 }
Michal Klocek
Adds examples to common build
r32 CONFIG += ordered
QMAKE_CXXFLAGS += -g -Wall
Michal Klocek
Rename QLineChartSeries to QLineSeries
r349 unix:QMAKE_DISTCLEAN += -r build bin include lib doc/html
win32:QMAKE_DISTCLEAN += /Q /s build bin include lib doc\\html
Michal Klocek
Adds examples to common build
r32
# install feature file
feature.path = $$[QT_INSTALL_DATA]/mkspecs/features
feature.files = $$PWD/features/qtcommercialchart.prf
INSTALLS += feature
Michal Klocek
Add "make doc" to build configuration
r306
Michal Klocek
Change make doc to make docs
r725 docs.target = docs
Michal Klocek
make doc config windows friendly
r307 win32:{
Michal Klocek
Change make doc to make docs
r725 docs.commands = qdoc3 $$CHART_BUILD_DOC_DIR\\qcharts.qdocconf
Michal Klocek
make doc config windows friendly
r307 }else{
Michal Klocek
Change make doc to make docs
r725 docs.commands = qdoc3 $$CHART_BUILD_DOC_DIR/qcharts.qdocconf
Michal Klocek
make doc config windows friendly
r307 }
Michal Klocek
Change make doc to make docs
r725 docs.depends = FORCE
Michal Klocek
Adds shadow build support
r708 QMAKE_EXTRA_TARGETS += docs