-
Notifications
You must be signed in to change notification settings - Fork 1
/
MusicEEG.pro
61 lines (45 loc) · 1.5 KB
/
MusicEEG.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-06-11T15:37:39
#
#-------------------------------------------------
QT += core gui
QT += sql
QT += phonon
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = MusicEEG
TEMPLATE = app
SOURCES += main.cpp\
mainw.cpp \
headset.cpp \
database.cpp \
musicplayer.cpp \
qcustomplot.cpp \
displayemotion.cpp \
recommender.cpp
HEADERS += mainw.h \
headset.h \
EmoStateDLL.h \
edkErrorCode.h \
edk.h \
database.h \
musicplayer.h \
qcustomplot.h \
displayemotion.h \
recommender.h
FORMS += mainw.ui \
displayemotion.ui
win32: LIBS += -L$$PWD -ledk
win32: LIBS += -L$$PWD -ledk_utils
INCLUDEPATH += $$PWD/../Emotiv
DEPENDPATH += $$PWD/../Emotiv
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../taglib/taglib/Release/x86/ -ltag
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../taglib/taglib/Debug/x86/ -ltagd
INCLUDEPATH += $$PWD/../taglib/include
DEPENDPATH += $$PWD/../taglib/include
win32:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../taglib/taglib/Release/x86/tag.lib
else:win32:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../taglib/taglib/Debug/x86/tagd.lib
INCLUDEPATH += $$PWD/../taglib/
DEPENDPATH += $$PWD/../taglib/
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../taglib/taglib/Debug/x86/ -ltag
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../taglib/taglib/Debug/x86/ -ltagd