mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
4347d27c04
1. added several new (JKQTPMathImageBone, JKQTPMathImageCool, JKQTPMathImageCopper, JKQTPMathImageAutumn, JKQTPMathImageSeismic, JKQTPMathImageTerrain, JKQTPMathImageViridis, JKQTPMathImageMagma, JKQTPMathImageInferno, JKQTPMathImagePlasma) 2. reworked LUT-types (now a QVector, instead of a C-array, suing malloc) 3. reworked available functions to build LUTs (cleanup, more options, clearer names) 4. added functions to load palettes from files 5. Improved documentation * added example for user-controlled color palettes
28 lines
669 B
Prolog
28 lines
669 B
Prolog
# source code for this simple demo
|
|
SOURCES = imageplot_userpal.cpp
|
|
|
|
# configure Qt
|
|
CONFIG += link_prl qt
|
|
QT += core gui xml svg
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
|
|
|
|
# output executable name
|
|
TARGET = imageplot_userpal
|
|
|
|
# include JKQTPlotter source code
|
|
DEPENDPATH += ../../lib ../../qmake/staticlib/jkqtplotterlib
|
|
INCLUDEPATH += ../../lib
|
|
CONFIG (debug, debug|release) {
|
|
LIBS += -L../../qmake/staticlib/jkqtplotterlib/debug -ljkqtplotterlib_debug
|
|
} else {
|
|
LIBS += -L../../qmake/staticlib/jkqtplotterlib/release -ljkqtplotterlib
|
|
}
|
|
message("LIBS = $$LIBS")
|
|
|
|
win32-msvc*: DEFINES += _USE_MATH_DEFINES
|
|
win32-msvc*: DEFINES += NOMINMAX
|
|
|
|
|
|
|
|
|