-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqobmenu.pro
executable file
·110 lines (90 loc) · 3.02 KB
/
qobmenu.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
105
106
107
108
109
110
#-------------------------------------------------
#
# Project created by QtCreator 2017-11-10T11:12:43
#
#-------------------------------------------------
QT += core gui xml x11extras dbus
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qobmenu
TEMPLATE = app
DESTDIR = usr/bin
CONFIG += qt \
release
OBJECTS_DIR = build
MOC_DIR = build
UI_DIR = build
INCLUDEPATH +=build
# The following define makes your compiler emit warnings 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
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
menuapplications.cpp \
menufolders.cpp \
menuprogrammes.cpp \
menugen.cpp \
menusystem.cpp \
findbutton.cpp \
menurecent.cpp \
openexec.cpp \
# menuform.cpp \
menuclassic.cpp\
power/powerdlg.cpp \
power/powermain.cpp \
utils/edir.cpp \
utils/desktopfile.cpp \
panel_adaptor.cpp
# utils/x11utills.cpp
HEADERS += \
menuapplications.h \
menufolders.h \
menuprogrammes.h \
menugen.h \
menusystem.h \
power/powerdlg.h \
power/powermain.h \
menurecent.h \
findbutton.h \
openexec.h \
# menuform.h \
menuclassic.h \
utils/desktopfile.h \
utils/edir.h \
panel_adaptor.h
#utils/x11utills.h
#FORMS += \
# menuform.ui
#---------------------------------------------
# TRANSLATIONS
#---------------------------------------------
TRANSLATIONS =usr/share/elokab/translations/ar/epanel.ts\
usr/share/elokab/translations/fr/epanel-fm.ts\
usr/share/elokab/translations/en/epanel-fm.ts\
#---------------------------------------------
# INSTALL
#---------------------------------------------
# MKDIR = mkdir -p /etc/xdg/menus
# MKDIR = mkdir -p /etc/xdg/elokab
# MKDIR = mkdir -p /usr/share/desktop-directories
# MKDIR = mkdir -p /usr/share/elokab
#---config files---------
# menusConfig.files =etc/xdg/menus/*
# menusConfig.path=/etc/xdg/
obConfig.files =etc/xdg/*
obConfig.path=/etc/xdg/
#---DATA files---------------
dsDirectoriesData.files=usr/share/desktop-directories/*
dsDirectoriesData.path=/usr/share/desktop-directories/
elokabData.files=usr/share/elokab/*
elokabData.path=/usr/share/elokab
target.path = /usr/bin
INSTALLS += target \
obConfig \
dsDirectoriesData \
elokabData