mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-25 18:11:38 +08:00
0e2237e92f
- fixed JKQTPColumnMathImage with modifiers - improved documentation - make use of link_prl/create_prl in QMake projects (see http://doc.qt.io/qt-5/qmake-advanced-usage.html)
19 lines
431 B
Prolog
19 lines
431 B
Prolog
TARGET = jkqtmathtext_simpletest
|
|
TEMPLATE = app
|
|
|
|
SOURCES += jkqtmathtext_simpletest.cpp
|
|
|
|
CONFIG += link_prl qt
|
|
QT += core gui xml svg
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
|
|
|
|
|
|
DEPENDPATH += . ../../lib
|
|
INCLUDEPATH += ../../lib
|
|
CONFIG (debug, debug|release) {
|
|
LIBS += -L../../staticlib/debug -ljkqtplotterlib_debug
|
|
} else {
|
|
LIBS += -L../../staticlib/release -ljkqtplotterlib
|
|
}
|
|
message("LIBS = $$LIBS")
|