mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
2d08250db6
- fixed additional renames JKQTPLotter->JKQTPlotter - improved documentation (boxplots, JKQTMathText) - added several examples
17 lines
1.3 KiB
Markdown
17 lines
1.3 KiB
Markdown
# 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`
|
|
|
|
### Build static libraries
|
|
In the directory [`../staticlib`](../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`](../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.
|
|
|