-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRandomPlayer.pro
More file actions
80 lines (68 loc) · 2.12 KB
/
RandomPlayer.pro
File metadata and controls
80 lines (68 loc) · 2.12 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
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
TARGET = randomplayer
QT += core gui \
multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
#LIBS += -Wl,-Bstatic
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
OBJECTS_DIR = build
MOC_DIR = build
UI_DIR = build
SOURCES += \
src/editform.cpp \
src/main.cpp \
src/mainwindow.cpp
HEADERS += \
src/editform.h \
src/mainwindow.h
FORMS += \
src/forms/editform.ui \
src/forms/mainwindow.ui \
RC_FILE = src/RandomPlayer.rc
RESOURCES += \
src/RandomPlayer.qrc
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
DISTFILES += \
src/RandomPlayer.rc \
src/images/RandomPlayer.ico \
src/images/blue-next-64.png \
src/images/blue-next-hover-64.png \
src/images/blue-pause-64.png \
src/images/blue-pause-hover-64.png \
src/images/blue-play-64.png \
src/images/blue-play-hover-64.png \
src/images/blue-previous-64.png \
src/images/blue-previous-hover-64.png \
src/images/blue-repeat-64.png \
src/images/blue-shuffle-64.png \
src/images/blue-stop-64.png \
src/images/blue-stop-hover-64.png \
src/images/close.png \
src/images/edit.png \
src/images/next.png \
src/images/next16.png \
src/images/next_hover.png \
src/images/open.png \
src/images/pause.png \
src/images/pause16.png \
src/images/pause_hover.png \
src/images/play.png \
src/images/play16.png \
src/images/play_hover.png \
src/images/playlist.png \
src/images/previous.png \
src/images/previous16.png \
src/images/previous_hover.png \
src/images/repeat.png \
src/images/repeat16.png \
src/images/save.png \
src/images/shuffle.png \
src/images/shuffle16.png \
src/images/stop.png \
src/images/stop16.png \
src/images/stop_hover.png