mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
24 lines
808 B
Prolog
24 lines
808 B
Prolog
TARGET = jkqtmathtext_simpletest
|
|
TEMPLATE = app
|
|
|
|
SOURCES += jkqtmathtext_simpletest.cpp
|
|
|
|
CONFIG += link_prl qt
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
|
|
|
|
|
|
DEPENDPATH += ../../lib ../../qmake/staticlib/jkqtmathtextlib
|
|
INCLUDEPATH += ../../lib
|
|
CONFIG (debug, debug|release) {
|
|
DEPENDPATH += ../../qmake/staticlib/jkqtmathtextlib/debug
|
|
LIBS += -L../../qmake/staticlib/jkqtmathtextlib/debug -L../../../qmake/staticlib/jkqtmathtextlib/debug -ljkqtmathtextlib_debug
|
|
} else {
|
|
DEPENDPATH += ../../qmake/staticlib/jkqtmathtextlib/release
|
|
LIBS += -L../../qmake/staticlib/jkqtmathtextlib/release -L../../../qmake/staticlib/jkqtmathtextlib/release -ljkqtmathtextlib
|
|
}
|
|
message("LIBS = $$LIBS")
|
|
|
|
win32-msvc*: DEFINES += _USE_MATH_DEFINES
|
|
win32-msvc*: DEFINES += NOMINMAX
|