-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyoutube-dl-qt.pro
44 lines (35 loc) · 973 Bytes
/
youtube-dl-qt.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-01-28T16:49:15
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
target.path = /usr/bin
desktop.path = /usr/share/applications
desktop.files += tools/youtube-dl-qt.desktop
icon.path = /usr/share/icons/hicolor/scalable/apps
icon.files += tools/youtube-dl-qt-icon.svg
ICON = youtube-dl-qt.svg
TARGET = youtube-dl-qt
TEMPLATE = app
INSTALLS += target desktop icon
SOURCES +=\
src/formatselectionwindow.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/mediaformat.cpp \
src/outputwindow.cpp \
src/youtubedl.cpp
HEADERS += \
src/formatselectionwindow.h \
src/mainwindow.h \
src/mediaformat.h \
src/outputwindow.h \
src/youtubedl.h
FORMS += \
src/formatselectionwindow.ui \
src/mainwindow.ui \
src/outputwindow.ui
RESOURCES += \
yt-dl-qt-rsrcs.qrc