-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPauzer.pro
105 lines (89 loc) · 2.12 KB
/
Pauzer.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
101
102
103
104
105
#-------------------------------------------------
#
# Project created by QtCreator 2015-12-03T02:04:14
#
#-------------------------------------------------
QT += core gui
QT += xml
QT += winextras
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Pauzer
TEMPLATE = app
CONFIG += resources_big
PRECOMPILED_HEADER = stable.h
SOURCES += main.cpp \
minipauzer.cpp \
manager.cpp \
player.cpp \
sliderbar.cpp \
folderdialog.cpp \
checkablefilesystemmodel.cpp \
autodetector.cpp \
playlist.cpp \
master.cpp \
qdraggableframe.cpp \
volumebutton.cpp \
volumeslider.cpp \
xml_bus.cpp \
xml_common.cpp \
xml_data.cpp \
xml_parser.cpp \
librarycreator.cpp \
processwidget.cpp \
playlistqueuewidget.cpp \
playlistqueuemodel.cpp \
setting.cpp \
mastermodel.cpp \
mastertableview.cpp \
playlistqueuelistview.cpp
HEADERS += minipauzer.h \
manager.h \
player.h \
stable.h \
sliderbar.h \
folderdialog.h \
checkablefilesystemmodel.h \
autodetector.h \
playlist.h \
master.h \
qdraggableframe.h \
volumebutton.h \
volumeslider.h \
xml_bus.h \
xml_common.h \
xml_data.h \
xml_parser.h \
librarycreator.h \
processwidget.h \
playlistqueuewidget.h \
playlistqueuemodel.h \
setting.h \
mastermodel.h \
mastertableview.h \
playlistqueuelistview.h
FORMS += minipauzer.ui \
folderdialog.ui \
volumeslider.ui \
processwidget.ui \
playlistqueuewidget.ui \
INCLUDEPATH += C:\Libraries\bass24\c \
C:\Libraries\taglib\include \
debug_and_release {
CONFIG -= debug_and_release
CONFIG += debug_and_release
}
CONFIG(debug, debug|release) {
CONFIG -= debug release
CONFIG += debug
LIBS += -LC:\Libraries\taglib\lib\win32-v110 -ltaglibd \
}
CONFIG(release, debug|release) {
CONFIG -= debug release
CONFIG += release
LIBS += -LC:\Libraries\taglib\lib\win32-v110 -ltaglib \
}
LIBS += -LC:\Libraries\bass24\c -lbass \
win32:LIBS += -lOle32 \
RESOURCES += \
resources.qrc \
RC_FILE = myapp.rc \