forked from AncientLysine/BiliLocal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BiliLocal.pro
64 lines (55 loc) · 968 Bytes
/
BiliLocal.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
QT += \
core \
gui \
widgets \
network
TARGET = BiliLocal
TEMPLATE = app
CONFIG += c++11
SOURCES += \
src/Interface.cpp \
src/Local.cpp \
src/Danmaku.cpp \
src/VPlayer.cpp \
src/Menu.cpp \
src/Info.cpp \
src/Search.cpp \
src/Utils.cpp \
src/Shield.cpp \
src/Config.cpp \
src/Editor.cpp \
src/Cookie.cpp \
src/Graphic.cpp \
src/Post.cpp \
src/Render.cpp \
src/History.cpp
HEADERS += \
src/Interface.h \
src/Danmaku.h \
src/VPlayer.h \
src/Menu.h \
src/Info.h \
src/Search.h \
src/Utils.h \
src/Shield.h \
src/Config.h \
src/Editor.h \
src/Cookie.h \
src/Graphic.h \
src/Post.h \
src/Render.h \
src/History.h
LIBS += \
-lvlc \
-lvlccore \
-lavutil \
-lswscale
RESOURCES += \
res/Res.qrc
TRANSLATIONS += \
trans/zh_CN.ts \
trans/zh_HK.ts \
trans/zh_TW.ts
win32{
RC_ICONS = BiliLocal.ico
}