##// END OF EJS Templates
Improves build configuration...
Michal Klocek -
r996:ce5f1c868418
parent child
Show More
@@ -1,4 +1,4
1 integrated_build:{
1 local_build:{
2 2 INCLUDEPATH += $$CHART_BUILD_PUBLIC_HEADER_DIR
3 3
4 4 !win32: {
@@ -1,15 +1,20
1 !include(common.pri) {
2 error('missing common.pri')
1 !include(config.pri) {
2 error('Missing config.pri')
3 3 }
4 4
5 5 TEMPLATE = subdirs
6 SUBDIRS += src qmlplugin examples demos test
6 SUBDIRS = src qmlplugin examples demos test
7 7
8 integrated_build:{
9 message('Configured for integrated build against local libs...')
8 local_build:{
9 message('Configured for local build against local libs...')
10 message('You can run "make" to build qchart library, examples and demos...')
10 11 } else {
11 12 message('Running build aginst system libs...')
12 message('Please build example test and qmlplugin after installing library.')
13 message('Bulding only charts library...')
14 message('You can run "make install" to build and install charts.')
15 message('Afterwards you can run "cd examples; qmake ; make " to build examples.')
16 message('Run qmake CONFIG+=local_build' to build everything at once.)
17 SUBDIRS = src
13 18 }
14 19
15 20 CONFIG += ordered
@@ -1,7 +1,7
1 CONFIG+=integrated_build #remove if you want to build against installed libs
2 1
2 #check if shadow build
3 3 !contains($${PWD}, $${OUT_PWD}){
4 search = "$$PWD:::"
4 search = "$$PWD:::"
5 5 temp = $$split(search,"/")
6 6 temp = $$last(temp)
7 7 path = $$replace(search,$$temp,'')
@@ -9,7 +9,8 CONFIG+=integrated_build #remove if you want to build against installed libs
9 9 temp = $$split(temp,'/')
10 10 temp = $$first(temp)
11 11 path = "$${path}$${temp}"
12 SHADOW=$$path
12 SHADOW=$$path
13 CONFIG-=developer_build
13 14 }else{
14 15 SHADOW=$$PWD
15 16 }
@@ -42,3 +43,5 mac: {
42 43 QMAKE_CXXFLAGS *= -mmacosx-version-min=10.5
43 44 QMAKE_LFLAGS *= -mmacosx-version-min=10.5
44 45 }
46
47 developer_build: DEFINES+=DEVELOPER_BUILD No newline at end of file
@@ -1,9 +1,9
1 !include( ../common.pri ) {
2 error( "Couldn't find the common.pri file!" )
1 !include( ../config.pri ) {
2 error( "Couldn't find the config.pri file!" )
3 3 }
4 4
5 !include( ../integrated.pri ) {
6 error( "Couldn't find the integrated.pri file !")
5 !include( ../build.pri ) {
6 error( "Couldn't find the build.pri file !")
7 7 }
8 8
9 9 DESTDIR = $$CHART_BUILD_BIN_DIR
@@ -1,9 +1,9
1 !include( ../common.pri ) {
2 error( "Couldn't find the common.pri file!" )
1 !include( ../config.pri ) {
2 error( "Couldn't find the config.pri file!" )
3 3 }
4 4
5 !include( ../integrated.pri ) {
6 error( "Couldn't find the integrated.pri file !")
5 !include( ../build.pri ) {
6 error( "Couldn't find the build.pri file !")
7 7 }
8 8
9 9 DESTDIR = $$CHART_BUILD_BIN_DIR
@@ -24,6 +24,7
24 24 #include "qchartglobal.h"
25 25 #include <QObject>
26 26 #include <QPointF>
27 #include <QTextStream>
27 28
28 29 QTCOMMERCIALCHART_BEGIN_NAMESPACE
29 30
@@ -3,11 +3,11 TARGET = qtcommercialchartqml
3 3 CONFIG += qt plugin
4 4 QT += declarative
5 5
6 !include( ../common.pri ) {
6 !include( ../config.pri ) {
7 7 error( "Couldn't find the common.pri file!" )
8 8 }
9 !include( ../integrated.pri ) {
10 error( "Couldn't find the integrated.pri file !")
9 !include( ../build.pri ) {
10 error( "Couldn't find the build.pri file !")
11 11 }
12 12
13 13 DESTDIR = $$CHART_BUILD_PLUGIN_DIR
@@ -20,6 +20,7
20 20
21 21 #include "splineanimation_p.h"
22 22 #include "splinechartitem_p.h"
23 #include <QDebug>
23 24
24 25 Q_DECLARE_METATYPE(QVector<QPointF>)
25 26 Q_DECLARE_METATYPE(SplineVector)
@@ -20,6 +20,7
20 20
21 21 #include "xyanimation_p.h"
22 22 #include "xychartitem_p.h"
23 #include <QDebug>
23 24
24 25 Q_DECLARE_METATYPE(QVector<QPointF>)
25 26
@@ -25,6 +25,7
25 25 #include "chartpresenter_p.h"
26 26 #include "chartanimator_p.h"
27 27 #include <QPainter>
28 #include <QDebug>
28 29 #include <cmath>
29 30
30 31 static int label_padding = 5;
@@ -365,7 +366,7 void Axis::setLayout(QVector<qreal> &layout)
365 366 }
366 367 break;
367 368 default:
368 qDebug()<<"Unknown axis type";
369 qWarning()<<"Unknown axis type";
369 370 break;
370 371 }
371 372
@@ -31,6 +31,7
31 31 #define QCHARTAXISCATEGORIES_P_H
32 32
33 33 #include "qchartaxiscategories.h"
34 #include <QMap>
34 35
35 36 QTCOMMERCIALCHART_BEGIN_NAMESPACE
36 37
@@ -2,6 +2,7
2 2 #define QBARSET_P_H
3 3
4 4 #include "qbarset.h"
5 #include <QMap>
5 6
6 7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
7 8
@@ -20,6 +20,7
20 20
21 21 #include "chart_p.h"
22 22 #include "chartpresenter_p.h"
23 #include <QDebug>
23 24
24 25 QTCOMMERCIALCHART_BEGIN_NAMESPACE
25 26
@@ -22,6 +22,7
22 22 #define CHART_H
23 23
24 24 #include "qchartglobal.h"
25 #include <QObject>
25 26 #include <QRect>
26 27
27 28 QTCOMMERCIALCHART_BEGIN_NAMESPACE
@@ -22,24 +22,28
22 22 #define CHARTCONFIG_H
23 23
24 24 #include "qchartglobal.h"
25
25 26 #ifdef Q_CC_MSVC
26 27 // There is a problem with jom.exe currently. It does not seem to understand QMAKE_EXTRA_TARGETS properly.
27 28 // This is the case at least with shadow builds.
28 29 // http://qt-project.org/wiki/jom
29 const char *buildTime = __DATE__;
30 #undef DEVELOPER_BUILD
31 #endif
32
33 #ifndef DEVELOPER_BUILD
34 const char *buildTime = __TIME__" "__DATE__;
30 35 const char *gitHead = "unknown";
31 36 #else
32 37 #include "qchartversion_p.h"
33 38 #endif
34 39
35
36 40 QTCOMMERCIALCHART_BEGIN_NAMESPACE
37 41
38 42 class ChartConfig {
39 43
40 44 private:
41 45 ChartConfig(){
42 #ifndef QT_NO_DEBUG
46 #if defined(DEVELOPMENT_BUILD) && !defined(QT_NO_DEBUG)
43 47 qDebug()<<"buildTime" << buildTime;
44 48 qDebug()<<"gitHead" << gitHead;
45 49 #endif
@@ -23,6 +23,7
23 23 #include "qchartglobal.h"
24 24 #include <QRectF>
25 25 #include <QSizeF>
26 #include <QDebug>
26 27
27 28 QTCOMMERCIALCHART_BEGIN_NAMESPACE
28 29
@@ -25,7 +25,6
25 25 #include "chartpresenter_p.h"
26 26 #include "chartdataset_p.h"
27 27 #include "chartanimator_p.h"
28 #include <QDebug>
29 28 #include <QPainter>
30 29 #include <QTimer>
31 30
@@ -25,7 +25,6
25 25 #include "qpieslice.h"
26 26 #include <QPen>
27 27 #include <QBrush>
28 #include <QDebug>
29 28
30 29 QTCOMMERCIALCHART_BEGIN_NAMESPACE
31 30
@@ -24,7 +24,6
24 24 #include "qpieslice.h"
25 25 #include "chartpresenter_p.h"
26 26 #include <QPainter>
27 #include <QDebug>
28 27 #include <qmath.h>
29 28 #include <QGraphicsSceneEvent>
30 29 #include <QTime>
@@ -27,7 +27,6
27 27 #include "chartanimator_p.h"
28 28 #include "legendmarker_p.h"
29 29 #include <QAbstractItemModel>
30 #include <QDebug>
31 30
32 31 QTCOMMERCIALCHART_BEGIN_NAMESPACE
33 32
@@ -42,13 +42,14
42 42 # define QTCOMMERCIALCHART_USE_NAMESPACE
43 43 #endif
44 44
45 #define CHART_DEBUG chartDebug(3,__LINE__,__FILE__,__FUNCTION__);
45 #if defined(DEVELOPER_BUILD) && !defined(QT_NO_DEBUG)
46 #define CHART_DEBUG chartDebug(3,__LINE__,__FILE__,__FUNCTION__)
47
46 48
47 49 #include <stdarg.h>
48 50 #include <QDebug>
49 51
50 /*
51 static QDebug chartDebug(int numargs,...)
52 static inline QDebug chartDebug(int numargs,...)
52 53 {
53 54 va_list valist;
54 55 va_start(valist,numargs);
@@ -59,5 +60,5 static QDebug chartDebug(int numargs,...)
59 60 va_end(valist);
60 61 return qDebug()<<QString().append(function).append("(").append(file).append(":%1)").arg(line);
61 62 }
62 */
63 #endif
63 64 #endif
@@ -24,6 +24,7
24 24 #include "chartpresenter_p.h"
25 25 #include <QPainter>
26 26 #include <QGraphicsScene>
27 #include <QDebug>
27 28
28 29 QTCOMMERCIALCHART_BEGIN_NAMESPACE
29 30
@@ -21,6 +21,7
21 21 #include "scroller_p.h"
22 22 #include "qlegend.h"
23 23 #include <QGraphicsSceneMouseEvent>
24 #include <QDebug>
24 25
25 26 QTCOMMERCIALCHART_BEGIN_NAMESPACE
26 27
@@ -1,4 +1,4
1 !include( ../common.pri ):error( Couldn't find the common.pri file! )
1 !include( ../config.pri ):error( Couldn't find the config.pri file! )
2 2 TARGET = QtCommercialChart
3 3 DESTDIR = $$CHART_BUILD_LIB_DIR
4 4 TEMPLATE = lib
@@ -70,6 +70,7 DEFINES += QTCOMMERCIALCHART_LIBRARY
70 70 }else{
71 71 command = "echo \"$${LITERAL_HASH}include \\\"qchartglobal.h\\\"\" > $$CHART_BUILD_PUBLIC_HEADER_DIR/QChartGlobal"
72 72 }
73 PUBLIC_QT_HEADERS += $$CHART_BUILD_PUBLIC_HEADER_DIR/QChartGlobal
73 74 system($$command)
74 75 }
75 76
@@ -121,19 +122,20 install_build_private_headers.CONFIG += target_predeps \
121 122 QMAKE_EXTRA_COMPILERS += install_build_public_headers \
122 123 install_build_private_headers \
123 124
125 # There is a problem with jom.exe currently. It does not seem to understand QMAKE_EXTRA_TARGETS properly.
126 # This is the case at least with shadow builds.
127 # http://qt-project.org/wiki/jom
124 128
125 !win32-msvc*: {
126
127 # There is a problem with jom.exe currently. It does not seem to understand QMAKE_EXTRA_TARGETS properly.
128 # This is the case at least with shadow builds.
129 # http://qt-project.org/wiki/jom
130
129 developer_build:!win32-msvc*:{
131 130 chartversion.target = $$PWD/qchartversion_p.h
132 131
133 132 unix:{
134 133 chartversion.commands = @echo \
135 "const char *buildTime = \\\"`date +'%y%m%d%H%M'`\\\" \\; \
136 const char *gitHead = \\\"`git rev-parse HEAD`\\\" \\; " \
134 \" $${LITERAL_HASH}ifndef QCHARTVERSION_P_H\\n\
135 $${LITERAL_HASH}define QCHARTVERSION_P_H\\n\
136 const char *buildTime = \\\"`date +'%y%m%d%H%M'`\\\" ; \\n\
137 const char *gitHead = \\\"`git rev-parse HEAD`\\\" ; \\n \
138 $${LITERAL_HASH}endif \" \
137 139 > \
138 140 $$chartversion.target;
139 141 }else{
@@ -147,7 +149,7 QMAKE_EXTRA_COMPILERS += install_build_public_headers \
147 149 chartversion.depends = $$HEADERS \
148 150 $$SOURCES
149 151
150 PRE_TARGETDEPS += $$PWD/qchartversion_p.h
152 PRE_TARGETDEPS += $$chartversion.target
151 153 QMAKE_CLEAN += $$PWD/qchartversion_p.h
152 154 QMAKE_EXTRA_TARGETS += chartversion
153 155 }
@@ -1,17 +1,6
1 !include( ../../common.pri ) {
2 error( "Couldn't find the common.pri file!" )
3 }
4 !include( ../../integrated.pri ) {
5 error( "Couldn't find the integrated.pri file !")
1 !include( ../test.pri ) {
2 error( "Couldn't find the test.pri file!" )
6 3 }
7 4
8 TEMPLATE = app
9 5 CONFIG += qtestlib
10
11 DESTDIR = $$CHART_BUILD_BIN_DIR/test
12 OBJECTS_DIR = $$CHART_BUILD_DIR/test/$$TARGET
13 MOC_DIR = $$CHART_BUILD_DIR/test/$$TARGET
14 UI_DIR = $$CHART_BUILD_DIR/test/$$TARGET
15 RCC_DIR = $$CHART_BUILD_DIR/test/$$TARGET
16
17 6 !contains(TARGET, ^tst_.*):TARGET = $$join(TARGET,,"tst_")
@@ -36,6 +36,7
36 36 #include <QRadioButton>
37 37 #include <QStringList>
38 38 #include <QSqlQuery>
39 #include <QDebug>
39 40
40 41 QTCOMMERCIALCHART_USE_NAMESPACE
41 42
@@ -1,8 +1,8
1 !include( ../common.pri ) {
2 error( "Couldn't find the common.pri file!" )
1 !include( ../config.pri ) {
2 error( "Couldn't find the config.pri file!" )
3 3 }
4 !include( ../integrated.pri ) {
5 error( "Couldn't find the integrated.pri file !")
4 !include( ../build.pri ) {
5 error( "Couldn't find the build.pri file !")
6 6 }
7 7
8 8 TEMPLATE = app
General Comments 0
You need to be logged in to leave comments. Login now