-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataBrowser.pro
More file actions
53 lines (39 loc) · 1.66 KB
/
DataBrowser.pro
File metadata and controls
53 lines (39 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#-------------------------------------------------
#
# Project created by QtCreator 2013-09-05T19:23:46
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = DataBrowser
TEMPLATE = app
CONFIG += c++11
QMAKE_CXXFLAGS += -std=c++0x
SOURCES += main.cpp\
mainwindow.cpp \
measurement.cpp \
datasetmodel.cpp \
datasetnode.cpp \
component.cpp
HEADERS += mainwindow.h \
measurement.h \
datasetmodel.h \
datasetnode.h \
component.h
FORMS += mainwindow.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/matiowrapper-build -lmatioWrapper
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/matiowrapper-build -lmatioWrapper
else:unix: LIBS += -L$$PWD/matiowrapper-build -lmatioWrapper
INCLUDEPATH += $$PWD/../MatioWrapper \
$$PWD/../matio-1.5.2/src
DEPENDPATH += $$PWD/../MatioWrapper \
$$PWD/../matio-1.5.2/src
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../matio-1.5.2/src/.libs/release/ -lmatio
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../matio-1.5.2/src/.libs/debug/ -lmatio
else:symbian: LIBS += -lmatio
else:unix: LIBS += -L$$PWD/../matio-1.5.2/src/.libs/ -lmatio
INCLUDEPATH += $$PWD/../matio-1.5.2/src
DEPENDPATH += $$PWD/../matio-1.5.2/src
win32:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../matio-1.5.2/src/.libs/release/matio.lib
else:win32:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../matio-1.5.2/src/.libs/debug/matio.lib
else:unix:!symbian: PRE_TARGETDEPS += $$PWD/../matio-1.5.2/src/.libs/libmatio.a