mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
7311948d53
restructuring/massive renaming to make this possible
44 lines
1.1 KiB
Prolog
44 lines
1.1 KiB
Prolog
|
|
# 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_user_interaction
|
|
|
|
# source code for this simple demo
|
|
SOURCES = test_user_interaction_main.cpp \
|
|
test_user_interaction.cpp
|
|
|
|
HEADERS += \
|
|
test_user_interaction.h
|
|
|
|
# include JKQTPlotter source code
|
|
DEPENDPATH += ../../lib ../../staticlib
|
|
INCLUDEPATH += ../../lib
|
|
CONFIG (debug, debug|release) {
|
|
LIBS += -L../../qmake/staticlib/jkqtplotterlib/debug -ljkqtplotterlib_debug
|
|
} else {
|
|
LIBS += -L../../qmake/staticlib/jkqtplotterlib/release -ljkqtplotterlib
|
|
}
|
|
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
|
|
# fix errors with min()/max() macros from windows
|
|
DEFINES += NOMINMAX
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|