JKQtPlotter/examples/jkqtfastplotter_test/jkqtfastplotter_test.pro
jkriege2 0e2237e92f - more refactorings to modernize C++
- 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)
2019-01-26 18:00:42 +01:00

40 lines
812 B
Prolog

# -------------------------------------------------
# Project created by QtCreator 2010-06-13T12:40:50
# -------------------------------------------------
TARGET = JKQTFastPlotter_test
TEMPLATE = app
SOURCES += jkqtfastplotter_test.cpp \
jkqtfastplotter_test_testmain.cpp
HEADERS += jkqtfastplotter_test_testmain.h
RCC_DIR = .rccs
CONFIG += link_prl qt windows
QT += core gui opengl
UI_DIR = .uics
OBJECTS_DIR = .objs
MOC_DIR = .mocs
DESTDIR = ./
DEFINES += DEBUG_TIMING
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
# include JKQTPlotter library
DEPENDPATH += . ../../lib
INCLUDEPATH += ../../lib
CONFIG (debug, debug|release) {
LIBS += -L../../staticlib/debug -ljkqtplotterlib_debug
} else {
LIBS += -L../../staticlib/release -ljkqtplotterlib
}
message("LIBS = $$LIBS")