-
Notifications
You must be signed in to change notification settings - Fork 7
/
IMUviewer.pro
100 lines (74 loc) · 3.27 KB
/
IMUviewer.pro
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#-------------------------------------------------
#
# Project created by QtCreator 2014-10-17T09:05:19
#
#-------------------------------------------------
QT += core gui
QT += opengl
LIBS += -lGLU -lglut
INCLUDEPATH += -L/usr/lib/
TARGET = IMUviewer
CONFIG += console
CONFIG -= app_bundle
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
#Prise en compte de l'ISO C++ 2011
QMAKE_CXXFLAGS+=-std=gnu++11
TEMPLATE = app
TARGET = IMUViewer
SOURCES += src/main.cpp \
src/signal.cpp \
src/csv.cpp \
src/tests.cpp \
src/mainwindow.cpp \
src/centrale.cpp \
src/principalcapteurgl.cpp \
src/tableaudebord.cpp \
src/gyrograph.cpp \
src/CCamera.cpp \
src/classifieur.cpp \
src/capteurgl.cpp
HEADERS += \
include/signal.h \
include/csv.h \
include/tests.h \
include/mainwindow.h \
include/glwidget.h \
include/centrale.h \
include/principalcapteurgl.h \
include/tableaudebord.h \
include/gyrograph.h \
include/CCamera.h \
include/classifieur.h \
include/capteurgl.h
FORMS += ui/mainwindow.ui
INCLUDEPATH+= include
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/lib/lib/release/ -lAquila
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/lib/lib/debug/ -lAquila
else:unix: LIBS += -L$$PWD/lib/lib/ -lAquila
INCLUDEPATH += $$PWD/lib/include
DEPENDPATH += $$PWD/lib/include
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/release/libAquila.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/debug/libAquila.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/release/Aquila.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/debug/Aquila.lib
else:unix: PRE_TARGETDEPS += $$PWD/lib/lib/libAquila.a
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/lib/lib/release/ -lOoura_fft
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/lib/lib/debug/ -lOoura_fft
else:unix: LIBS += -L$$PWD/lib/lib/ -lOoura_fft
INCLUDEPATH += $$PWD/lib/include
DEPENDPATH += $$PWD/lib/include
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/release/libOoura_fft.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/debug/libOoura_fft.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/release/Ooura_fft.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/debug/Ooura_fft.lib
else:unix: PRE_TARGETDEPS += $$PWD/lib/lib/libOoura_fft.a
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/lib/lib/release/ -lUnitTest++
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/lib/lib/debug/ -lUnitTest++
else:unix: LIBS += -L$$PWD/lib/lib/ -lUnitTest++
INCLUDEPATH += $$PWD/lib/include
DEPENDPATH += $$PWD/lib/include
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/release/libUnitTest++.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/debug/libUnitTest++.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/release/UnitTest++.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/lib/lib/debug/UnitTest++.lib
else:unix: PRE_TARGETDEPS += $$PWD/lib/lib/libUnitTest++.a