JKQtPlotter/examples/jkqtfastplotter_test/jkqtfastplotter_test.pro

40 lines
761 B
Prolog

# -------------------------------------------------
# Project created by QtCreator 2010-06-13T12:40:50
# -------------------------------------------------
TARGET = JKQTFastPlotter_test
TEMPLATE = app
SOURCES += jkqtfastplotter_test.cpp \
testmain.cpp
HEADERS += testmain.h
RCC_DIR = .rccs
CONFIG += 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")