This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
liri-browser.pro
73 lines (56 loc) · 1.61 KB
/
liri-browser.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
# Copy translation files
#copydata.commands = $(COPY_DIR) $$PWD/translations $$OUT_PWD
#first.depends = $(first) copydata
#export(first.depends)
#export(copydata.commands)
#QMAKE_EXTRA_TARGETS += first copydata
TEMPLATE = app
QT += qml quick widgets svg xml webengine multimedia core network webenginewidgets
QTPLUGIN += qsvg
SOURCES += src/main.cpp \
src/config.cpp \
src/cursor/cursor.cpp \
src/clipboardadapter.cpp \
src/plugins/pluginsengine.cpp \
src/plugins/plugin.cpp \
src/plugins/api.cpp \
src/plugins/urlopener.cpp
HEADERS += \
src/config.h \
src/cursor/cursor.h \
src/plugins/pluginsengine.h \
src/plugins/plugin.h \
src/plugins/api.h \
src/plugins/urlopener.h
RESOURCES += \
src/qml.qrc
CONFIG += c++11
TRANSLATIONS += src/translations/liri-browser.ts \
src/translations/de_DE.ts \
src/translations/ru_RU.ts \
src/translations/fr_FR.ts \
src/translations/es_CR.ts \
src/translations/es_ES.ts \
src/translations/pt_BR.ts \
src/translations/pt_PT.ts
lupdate_only{
SOURCES = *.qml \
*.js \
src/qml/* \
}
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
DISTFILES +=
# Windows icon
RC_ICONS = icons/liri-browser.ico
# OS X icon
ICON = icons/liri-browser.icns
HEADERS += \
src/clipboardadapter.h
linux-g++{
target.path=/opt/liri-browser-build
target.files+=liri-browser
target.files+=liri-browser.desktop
}