forked from MX-Linux/mx-packageinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mx-packageinstaller.pro
105 lines (96 loc) · 4.21 KB
/
mx-packageinstaller.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# **********************************************************************
# * Copyright (C) 2017 MX Authors
# *
# * Authors: Adrian
# * Dolphin_Oracle
# * MX Linux <http://mxlinux.org>
# *
# * This file is part of mx-packageinstaller.
# *
# * mx-packageinstaller is free software: you can redistribute it and/or modify
# * it under the terms of the GNU General Public License as published by
# * the Free Software Foundation, either version 3 of the License, or
# * (at your option) any later version.
# *
# * mx-packageinstaller is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# * GNU General Public License for more details.
# *
# * You should have received a copy of the GNU General Public License
# * along with mx-packageinstaller. If not, see <http://www.gnu.org/licenses/>.
# **********************************************************************/
QT += core gui xml network widgets
CONFIG += c++17
TARGET = mx-packageinstaller
TEMPLATE = app
# The following define makes your compiler warn you if you use any
# feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += main.cpp\
mainwindow.cpp \
lockfile.cpp \
versionnumber.cpp \
aptcache.cpp \
remotes.cpp \
about.cpp \
cmd.cpp
HEADERS += \
mainwindow.h \
lockfile.h \
versionnumber.h \
aptcache.h \
remotes.h \
version.h \
about.h \
cmd.h
FORMS += \
mainwindow.ui
TRANSLATIONS += translations/mx-packageinstaller_am.ts \
translations/mx-packageinstaller_ar.ts \
translations/mx-packageinstaller_bg.ts \
translations/mx-packageinstaller_ca.ts \
translations/mx-packageinstaller_cs.ts \
translations/mx-packageinstaller_da.ts \
translations/mx-packageinstaller_de.ts \
translations/mx-packageinstaller_el.ts \
translations/mx-packageinstaller_es.ts \
translations/mx-packageinstaller_et.ts \
translations/mx-packageinstaller_eu.ts \
translations/mx-packageinstaller_fa.ts \
translations/mx-packageinstaller_fi.ts \
translations/mx-packageinstaller_fr.ts \
translations/mx-packageinstaller_fr_BE.ts \
translations/mx-packageinstaller_he_IL.ts \
translations/mx-packageinstaller_hi.ts \
translations/mx-packageinstaller_hr.ts \
translations/mx-packageinstaller_hu.ts \
translations/mx-packageinstaller_id.ts \
translations/mx-packageinstaller_is.ts \
translations/mx-packageinstaller_it.ts \
translations/mx-packageinstaller_ja.ts \
translations/mx-packageinstaller_kk.ts \
translations/mx-packageinstaller_ko.ts \
translations/mx-packageinstaller_lt.ts \
translations/mx-packageinstaller_mk.ts \
translations/mx-packageinstaller_mr.ts \
translations/mx-packageinstaller_nb.ts \
translations/mx-packageinstaller_nl.ts \
translations/mx-packageinstaller_pl.ts \
translations/mx-packageinstaller_pt.ts \
translations/mx-packageinstaller_pt_BR.ts \
translations/mx-packageinstaller_ro.ts \
translations/mx-packageinstaller_ru.ts \
translations/mx-packageinstaller_sk.ts \
translations/mx-packageinstaller_sl.ts \
translations/mx-packageinstaller_sq.ts \
translations/mx-packageinstaller_sr.ts \
translations/mx-packageinstaller_sv.ts \
translations/mx-packageinstaller_tr.ts \
translations/mx-packageinstaller_uk.ts \
translations/mx-packageinstaller_zh_CN.ts \
translations/mx-packageinstaller_zh_TW.ts
RESOURCES += \
images.qrc