##// END OF EJS Templates
Add "make doc" to build configuration
Michal Klocek -
r306:18cd2f004e5a
parent child
Show More
@@ -1,22 +1,27
1 !include(common.pri) {
1 !include(common.pri) {
2 error('missing common.pri')
2 error('missing common.pri')
3 }
3 }
4
4
5 TEMPLATE = subdirs
5 TEMPLATE = subdirs
6 SUBDIRS += src example test qmlplugin
6 SUBDIRS += src example test qmlplugin
7
7
8 integrated_build:{
8 integrated_build:{
9 message('Configured for integrated build')
9 message('Configured for integrated build')
10 } else {
10 } else {
11 message('Please build example test and qmlplugin after installing library.')
11 message('Please build example test and qmlplugin after installing library.')
12 }
12 }
13
13
14 CONFIG += ordered
14 CONFIG += ordered
15 QMAKE_CXXFLAGS += -g -Wall
15 QMAKE_CXXFLAGS += -g -Wall
16 unix:QMAKE_DISTCLEAN += -r build bin
16 unix:QMAKE_DISTCLEAN += -r build bin
17 win32:QMAKE_DISTCLEAN += /Q build bin
17 win32:QMAKE_DISTCLEAN += /Q build bin
18
18
19 # install feature file
19 # install feature file
20 feature.path = $$[QT_INSTALL_DATA]/mkspecs/features
20 feature.path = $$[QT_INSTALL_DATA]/mkspecs/features
21 feature.files = $$PWD/features/qtcommercialchart.prf
21 feature.files = $$PWD/features/qtcommercialchart.prf
22 INSTALLS += feature
22 INSTALLS += feature
23
24 doc.target = doc
25 doc.commands = qdoc3 ./doc/qcharts.qdocconf
26 doc.depends = FORCE
27 QMAKE_EXTRA_TARGETS += doc
General Comments 0
You need to be logged in to leave comments. Login now