Analitza
Overview | Getting Started | Tutorials | Examples and Showcases
Install Analitza
In Linux, if your distribution have already the package then installing is easy, for example in Debian type as root user:
In Windows the task is very simple thanks to KDE Installer you just need to follow the wizard and check to install the Analitza package. For more information about KDE on windows read this.
Just remeber that Analitza version depends of KDE version, and your distribution (in case of Linux) or KDE Installer (in case of windows) can have and old version of KDE.
Build and Install Analitza
In case the repositories doesn't have the library package or you want the last version of Analitza, then you can build and then install the library from sources.
First, check this prerequisites:
- Make sure you have Git installed.
- Make sure you have CMake installed.
- Analitza needs a successful installation of KDELibs, however since doesn't use the most heavy/exotics components from KDELibs, then you can build Analitza using an older version of KDELibs, you just need to install the kdelibs-dev package from your repository (from distibution in case of Linux , and from KDE Installer in case of windows) If you still want to build KDELibs then read here the details.
- If you want to use 3D features of Analitza (like drawing implicit surfaces for instance), then you need to make sure that OpenGL development libraries are correctly installed in your system.
- If you want to build a command line calculator called calgebra, then you need the readline development libraries.
Next, let's follow these steps in your terminal:
- git clone git://anongit.kde.org/analitza
- For Linux type:For Windows create a folder called build inside analitza and then you need to go there (inside build folder).cd analitza && mkdir build && cd build
- cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=debugfull
- make install
For more information about building KDE Software you can read here and here.
Setup a CMake Project
Once the Analitza is installed, then you have headers and sublibraries binaries for each Modules. The installation process ensures that cmake will find the library by using find_package macro, this because an AnalitzaConfig.cmake was installed. Here you have more information about CMake macros.
Now, let see this basic template for a CMake project:
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:11:37 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.