JKQtPlotter/lib
2019-11-21 08:01:17 +01:00
..
jkqtcommon fix issue #19: got rid of jkqtpArrayMalloc(), jkqtpArrayCalloc(), jkqtpArrayFree() (which were a remenant of QuickFit 3 and not really portable or useful) 2019-11-18 16:15:49 +01:00
jkqtfastplotter reworked CMake build system ... now JKQT...Config.cmake-files are written into the correct directory 2019-11-18 15:59:06 +01:00
jkqtmathtext reworked CMake build system ... now JKQT...Config.cmake-files are written into the correct directory 2019-11-18 15:59:06 +01:00
jkqtplotter add missing compiler flag 2019-11-21 08:01:17 +01:00
CMakeLists.txt reworked CMake build system ... now JKQT...Config.cmake-files are written into the correct directory 2019-11-18 15:59:06 +01:00
jkqtfastplotter.pri further reorganizations of code 2019-06-20 16:25:29 +02:00
jkqtmathtext.pri added CMake build scripts for libraries + some necessary reorganizations 2019-06-20 15:18:58 +02:00
jkqtpcommon.pri + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtplotter_version.h.in + added license/readme output to INSTALL-target in CMake 2019-06-22 16:42:42 +02:00
jkqtplotter.pri further reorganizations of code 2019-06-20 16:25:29 +02:00
README.md new: Statistics library with functions to calculate histograms, regression, kernel density estimates, ... including a new example 2019-05-29 22:40:02 +02:00

JKQTPlotter: LIB subdirectory

This directory contains all files that belong to the JKQTPlotter library (including the files of the JKQTFastPlotter and JKMathText). There are several ways to add these to your program:

simply include all necessary files

If you use QMake and simply want to include all necessary files into your project, include one of these PRI-files into your QMake Project:

  • jkqtplotter.pri contains all files in this library, including JKQTFastPlotter and JKQTMathText
  • jkqtfastplotter.pri contains only those files from this directory which are necessary to build JKQTFastPlotter
  • jkqtmathtext.pri contains only those files from this directory which are necessary to build JKQTMathText
  • jkqtpcommon.pri common support library for all libraries above (math tools, basic drawing tools, ...)

Build static libraries

In the directory ../staticlib you will find several Project files that build a static library of the full JKQTPlotter (including JKQTFastPlotter and JKMathText), or of subsets of this library. You can then link against these libs in your project.

Build shared libraries (DLLs, SOs, ...)

In the directory ../sharedlib you will find several Project files that build a dynamic shared library of the full JKQTPlotter (including JKQTFastPlotter and JKMathText), or of subsets of this library. You can then link against these libs in your project.