-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatioWrapper.pro
More file actions
43 lines (34 loc) · 1.22 KB
/
MatioWrapper.pro
File metadata and controls
43 lines (34 loc) · 1.22 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
#-------------------------------------------------
#
# Project created by QtCreator 2013-10-06T16:26:16
#
#-------------------------------------------------
QT -= gui
TARGET = matioWrapper
TEMPLATE = lib
DEFINES += MATIOWRAPPER_LIBRARY
SOURCES += matiowrapper.cpp \
matfile.cpp \
matvar.cpp \
matstruct.cpp
HEADERS += matiowrapper.h\
matiowrapper_global.h \
matfile.h \
matvar.h \
matstruct.h
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}
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: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: PRE_TARGETDEPS += $$PWD/../matio-1.5.2/src/.libs/libmatio.a