-
Notifications
You must be signed in to change notification settings - Fork 0
/
baiacu.pro
96 lines (84 loc) · 2.44 KB
/
baiacu.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-06-04T20:45:08
#
#-------------------------------------------------
QT += core gui network xml widgets
DEFINES += OCTOPKG_EXTENSIONS
CONFIG += qt warn_on debug
LIBS += -L/usr/local/lib
INCLUDEPATH += /usr/local/include
QMAKE_CXXFLAGS += -std=c++17
TEMPLATE = app
DESTDIR += bin
OBJECTS_DIR += build
MOC_DIR += build
UI_DIR += build
HEADERS += src/QtSolutions/qtsingleapplication.h \
src/packagetreeview.h \
src/QtSolutions/qtlocalpeer.h \
src/constants.h \
src/mainwindow.h \
src/strconstants.h \
src/searchlineedit.h \
src/argumentlist.h \
src/settingsmanager.h \
src/uihelper.h \
src/package.h \
src/unixcommand.h \
src/wmhelper.h \
src/treeviewpackagesitemdelegate.h \
src/searchbar.h \
src/transactiondialog.h \
src/globals.h \
src/packagerepository.h \
src/model/packagemodel.h \
src/ui/baiacutabinfo.h \
src/utils.h
SOURCES += src/QtSolutions/qtsingleapplication.cpp \
src/packagetreeview.cpp \
src/QtSolutions/qtlocalpeer.cpp \
src/main.cpp\
src/mainwindow.cpp \
src/strconstants.cpp \
src/searchlineedit.cpp \
src/argumentlist.cpp \
src/settingsmanager.cpp \
src/package.cpp \
src/unixcommand.cpp \
src/wmhelper.cpp \
src/treeviewpackagesitemdelegate.cpp \
src/mainwindow_init.cpp \
src/mainwindow_transaction.cpp \
src/mainwindow_events.cpp \
src/mainwindow_help.cpp \
src/searchbar.cpp \
src/mainwindow_searchbar.cpp \
src/transactiondialog.cpp \
src/mainwindow_news.cpp \
src/mainwindow_refresh.cpp \
src/globals.cpp \
src/packagerepository.cpp \
src/model/packagemodel.cpp \
src/ui/baiacutabinfo.cpp \
src/utils.cpp
FORMS += ui/mainwindow.ui \
ui/transactiondialog.ui
RESOURCES += resources.qrc
#TRANSLATIONS += resources/translations/octopkg_pt_BR.ts
isEmpty(PREFIX) {
PREFIX = /usr/local
}
isEmpty(DATADIR) {
DATADIR = $$PREFIX/share
}
isEmpty(BINDIR) {
BINDIR = $$PREFIX/bin
}
target.path = $$BINDIR
bin.path = $$BINDIR
desktop.path = $$DATADIR/applications
desktop.files += baiacu.desktop
icon.path = $$DATADIR/icons
icon.files += resources/images/baiacu.png
INSTALLS += target bin desktop icon