Warning, /libraries/kqtquickcharts/README.md is written in an unsupported language. File is not indexed.

0001 kqtquickcharts
0002 ==============
0003 
0004 Beautiful and interactive charts for Qt Quick
0005 
0006 ## Installation
0007 
0008 ### Prerequesites
0009 
0010 **kqtquicharts** depends on the following libaries:
0011 
0012  * Qt >= 5.2
0013  * CMake >= 2.8.12
0014  * CMake Extra Modules >= 1.1
0015  
0016 ### Building
0017 
0018 Once the required libaries are installed **kqtquickcharts** can be built with:
0019 
0020     $ mkdir build
0021     $ cd build
0022     $ cmake ..
0023     $ make
0024 
0025 To be usable the components have to be installed:
0026 
0027     # make install
0028 
0029 ## Try it out
0030 
0031 There are a few example projects in the `demo` folder. They are directly
0032 runable in **qmlviewer**. Make sure to pass the required import folders
0033 to it:
0034 
0035     $ cd demo/minimal
0036     $ qml -I /usr/lib64/qt5/qml main.qml
0037