diff --git a/README b/README index 1fc8057..3fd8fbb 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.