JKQtPlotter/lib
Stephan Oostveen e7ca3db4de Bug: JKMathParser exception return local variable
Fix the what() function which returned a pointer to a local variable.
2021-03-23 21:01:27 +01:00
..
jkqtcommon Bug: JKMathParser exception return local variable 2021-03-23 21:01:27 +01:00
jkqtfastplotter Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIR 2020-10-02 14:40:47 +01:00
jkqtmathtext Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIR 2020-10-02 14:40:47 +01:00
jkqtplotter several minor bugfixes to QMake build system 2020-10-19 16:05:18 +02:00
CMakeLists.txt
jkqtfastplotter.pri
jkqtmathtext.pri
jkqtpcommon.pri
jkqtplotter_version.h.in
jkqtplotter.pri - breaking: geometric elements constructor: removed all styling properties, added setStyle()-functions to replace them. This is necessary to better work with the extended Styling system 2020-09-26 15:58:58 +02:00
README.md

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.