-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquicktube.pro
More file actions
37 lines (26 loc) · 787 Bytes
/
quicktube.pro
File metadata and controls
37 lines (26 loc) · 787 Bytes
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
TARGET = quicktube
TEMPLATE = app
QT += network qml quick quickcontrols2 widgets
SOURCES += src/main.cpp
HEADERS += src/tools/process.h \
src/tools/request.h
RESOURCES += src/resources.qrc
# BUILD
CONFIG(release) {
unix:OBJECTS_DIR = ./build/.obj/unix
win32:OBJECTS_DIR = ./build/.obj/win32
mac:OBJECTS_DIR = ./build/.obj/mac
UI_DIR = ./build/.ui
MOC_DIR = ./build/.moc
RCC_DIR = ./build/.rcc
}
# INSTALL
PREFIX = /usr
target.path = $$PREFIX/bin
documentation.path = $$PREFIX/share/$$TARGET/doc
documentation.files = README.md CHANGES LICENSE
iconpng.path = $$PREFIX/share/icons/hicolor/128x128/apps
iconpng.files = $${TARGET}.png
desktop.path = $$PREFIX/share/applications
desktop.files += $${TARGET}.desktop
INSTALLS += target documentation iconpng desktop