summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@digia.com>2012-07-11 14:32:25 +0300
committerMichal Klocek <michal.klocek@digia.com>2012-07-11 14:32:25 +0300
commit151c048d80cdc89d74a2ee161a8fbb9047189f16 (patch)
treec4c443d8444db54103008007fa222f46d28f29e9 /README
parent66188ee0d6a59c0bef372193c418d306a02128e1 (diff)
Updated README
Diffstat (limited to 'README')
-rw-r--r--README28
1 files changed, 18 insertions, 10 deletions
diff --git a/README b/README
index 1fc80575..3fd8fbb7 100644
--- a/README
+++ b/README
@@ -2,7 +2,7 @@
Commercial Charts Add-on 1.0.0
--------------------------------
-What’s in Qt Commercial Charts
+What�s in Qt Commercial Charts
=============================
Directory structure:
@@ -24,18 +24,26 @@ licenses/
Building
========
-Configure project with qmake. On Windows by default both debug and release
-versions are built. On other platforms you need to specify the version
-(default is debug):
- (Windows) qmake
- (Other platforms) qmake CONFIG+=release
-
-Build poject with make:
- (Linux) make
+Configure project with qmake and build poject with make:
+ (Linux) make
(Windows with MinGw) mingw32-make
(Visual Studio) nmake
(OSX) make
+For debug builds:
+ qmake CONFIG+=debug ; make
+ or
+ qmake CONFIG+=debug_and_relese; make debug
+
+For release builds:
+ qmake CONFIG+=release ; make
+ or
+ qmake CONFIG+=debug_and_relese; make release
+
+For both builds
+ qmake CONFIG+=debug_and_relese; make all
+
+
If you want to install the libraries to your Qt library directory use:
make install
@@ -74,6 +82,6 @@ Main Changes between Beta and Final
* In future it's possible to display several axes at the same time.
* QBarCategoriesAxis and QValuesAxis classes have been added.
* QBarSeries change to QGroupedBarSeries introduced in Beta has been reverted.
-* “Getting Started” documentation has been added.
+* �Getting Started� documentation has been added.
* Chart layout management has been refactored.