forked from KaOSx/welcome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.pro
47 lines (35 loc) · 1.28 KB
/
welcome.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
#-------------------------------------------------
#
# Project created by QtCreator 2013-12-07T22:14:32
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = welcome
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui
RESOURCES += resources.qrc
TRANSLATIONS += translateFile.ts \
translations/translatefilets_nl_NL.ts \
translations/translatefilets_es.ts \
translations/translatefilets_es_AR.ts \
translations/translatefilets_fr.ts \
translations/translatefilets_it.ts \
translations/translatefilets_pt_BR.ts \
translations/translatefilets_tr_TR.ts \
translations/translatefilets_de.ts \
translations/translatefilets_ru.ts \
translations/translatefilets_nl_BE.ts \
translations/translatefilets_ca.ts
# install
target.path = /usr/bin
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS *.pro
sources.path = .
desktop.path = /usr/share/applications
desktop.files += welcome.desktop
icon.files += welcome.png
icon.path += /usr/share/pixmaps
INSTALLS += target desktop icon