2019-02-03 21:04:48 +08:00
|
|
|
# source code for this simple demo
|
|
|
|
SOURCES = test_multiplot.cpp \
|
|
|
|
test_multiplot_ui.cpp
|
|
|
|
|
|
|
|
# configure Qt
|
|
|
|
CONFIG += link_prl qt
|
|
|
|
CONFIG += link_prl c++11
|
|
|
|
QT += core gui xml svg
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
|
|
|
|
|
|
|
|
# output executable name
|
|
|
|
TARGET = test_multiplot
|
|
|
|
|
|
|
|
|
|
|
|
# include JKQTPlotter source code
|
2019-02-08 00:24:46 +08:00
|
|
|
DEPENDPATH += ../../lib ../../staticlib
|
2019-02-03 21:04:48 +08:00
|
|
|
INCLUDEPATH += ../../lib
|
|
|
|
CONFIG (debug, debug|release) {
|
2019-02-09 22:25:16 +08:00
|
|
|
LIBS += -L../../staticlib/jkqtplotterlib/debug -ljkqtplotterlib_debug
|
2019-02-03 21:04:48 +08:00
|
|
|
} else {
|
2019-02-09 22:25:16 +08:00
|
|
|
LIBS += -L../../staticlib/jkqtplotterlib/release -ljkqtplotterlib
|
2019-02-03 21:04:48 +08:00
|
|
|
}
|
|
|
|
message("LIBS = $$LIBS")
|
|
|
|
|
|
|
|
win32-msvc* {
|
|
|
|
QMAKE_CXXFLAGS += /EHsc /std:c++14
|
|
|
|
# To enable M_PI, M_E,...
|
|
|
|
DEFINES += _USE_MATH_DEFINES
|
|
|
|
# To fix error: C2338: va_start argument must not
|
|
|
|
# have reference type and must not be parenthesized
|
|
|
|
DEFINES += _CRT_NO_VA_START_VALIDATION
|
2019-05-30 04:47:26 +08:00
|
|
|
# fix errors with min()/max() macros from windows
|
|
|
|
DEFINES += NOMINMAX
|
2019-02-03 21:04:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-08 00:24:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-02-03 21:04:48 +08:00
|
|
|
|
|
|
|
FORMS += \
|
|
|
|
test_multiplot_ui.ui
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
test_multiplot_ui.h
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
test_multiplot.qrc
|