JKQtPlotter/lib
2022-07-23 13:58:33 +02:00
..
jkqtcommon removed compiler warning 2022-07-23 13:58:33 +02:00
jkqtfastplotter bugfix: missing include 2022-07-21 12:01:43 +02:00
jkqtmathtext better way to reuse PCH in examples, added CMake-Option to (de)activate PCH-usage 2022-07-22 21:44:16 +02:00
jkqtplotter better way to reuse PCH in examples, added CMake-Option to (de)activate PCH-usage 2022-07-22 21:44:16 +02:00
CMakeLists.txt updated compile status output 2022-07-23 10:40:04 +02:00
jkqtfastplotter.pri improved/fixed qmake-build scripts fot Qt6 2022-04-24 22:07:16 +02:00
jkqtmathtext.pri updated QMake-build files 2022-07-19 14:39:59 +02:00
jkqtpcommon.pri bugfixed qmake build scripts 2022-07-20 21:35:45 +02:00
jkqtplotter_pch.pri using Precompiled Headers in QMake 2022-07-23 13:58:01 +02:00
jkqtplotter_version.h.in updated copyright notice 2022-07-19 13:40:43 +02:00
jkqtplotter.pri updated QMake-build files 2022-07-19 14:39:59 +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.