##// END OF EJS Templates
Updated README
Michal Klocek -
r1677:151c048d80cd
parent child
Show More
@@ -2,7 +2,7
2 Commercial Charts Add-on 1.0.0
2 Commercial Charts Add-on 1.0.0
3 --------------------------------
3 --------------------------------
4
4
5 What�s in Qt Commercial Charts
5 What�s in Qt Commercial Charts
6 =============================
6 =============================
7
7
8 Directory structure:
8 Directory structure:
@@ -24,18 +24,26 licenses/
24 Building
24 Building
25 ========
25 ========
26
26
27 Configure project with qmake. On Windows by default both debug and release
27 Configure project with qmake and build poject with make:
28 versions are built. On other platforms you need to specify the version
28 (Linux) make
29 (default is debug):
30 (Windows) qmake
31 (Other platforms) qmake CONFIG+=release
32
33 Build poject with make:
34 (Linux) make
35 (Windows with MinGw) mingw32-make
29 (Windows with MinGw) mingw32-make
36 (Visual Studio) nmake
30 (Visual Studio) nmake
37 (OSX) make
31 (OSX) make
38
32
33 For debug builds:
34 qmake CONFIG+=debug ; make
35 or
36 qmake CONFIG+=debug_and_relese; make debug
37
38 For release builds:
39 qmake CONFIG+=release ; make
40 or
41 qmake CONFIG+=debug_and_relese; make release
42
43 For both builds
44 qmake CONFIG+=debug_and_relese; make all
45
46
39 If you want to install the libraries to your Qt library directory use:
47 If you want to install the libraries to your Qt library directory use:
40 make install
48 make install
41
49
@@ -74,6 +82,6 Main Changes between Beta and Final
74 * In future it's possible to display several axes at the same time.
82 * In future it's possible to display several axes at the same time.
75 * QBarCategoriesAxis and QValuesAxis classes have been added.
83 * QBarCategoriesAxis and QValuesAxis classes have been added.
76 * QBarSeries change to QGroupedBarSeries introduced in Beta has been reverted.
84 * QBarSeries change to QGroupedBarSeries introduced in Beta has been reverted.
77 * �Getting Started� documentation has been added.
85 * �Getting Started� documentation has been added.
78 * Chart layout management has been refactored.
86 * Chart layout management has been refactored.
79
87
General Comments 0
You need to be logged in to leave comments. Login now