thedesk/desktop/desktop.pro

144 lines
4.8 KiB
Prolog
Raw Normal View History

QT += core gui tdesktopenvironment network multimedia multimediawidgets quickwidgets
2020-04-04 23:02:17 +11:00
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = thedesk
CONFIG += c++11
2020-04-11 22:06:34 +10:00
# Include the-libs build tools
include(/usr/share/the-libs/pri/gentranslations.pri)
2020-04-17 00:52:51 +10:00
QMAKE_POST_LINK += $$QMAKE_COPY_DIR $$quote($$PWD/translations) $$shell_quote($$OUT_PWD) && \
$$QMAKE_COPY $$quote($$PWD/defaults.conf) $$shell_quote($$OUT_PWD)
2020-04-11 22:06:34 +10:00
2020-04-04 23:02:17 +11:00
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked 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 it uses 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 += \
background/background.cpp \
bar/barwindow.cpp \
bar/chunkcontainer.cpp \
2020-12-14 18:11:24 +11:00
bar/currentappwidget.cpp \
2021-03-03 01:09:41 +11:00
bar/currentappwidgetmenu.cpp \
2020-04-04 23:02:17 +11:00
bar/mainbarwidget.cpp \
2020-04-11 22:06:34 +10:00
bar/taskbarwidget.cpp \
cli/commandline.cpp \
2020-04-04 23:02:17 +11:00
gateway/appselectionmodel.cpp \
gateway/appselectionmodellistdelegate.cpp \
gateway/gateway.cpp \
gateway/maingatewaywidget.cpp \
main.cpp \
2020-07-02 23:22:21 +10:00
run/rundialog.cpp \
2020-04-11 22:06:34 +10:00
session/endsession.cpp \
session/endsessionbutton.cpp \
2020-07-05 00:03:15 +10:00
statuscenter/leftpanedelegate.cpp \
2020-04-11 22:06:34 +10:00
statuscenter/statuscenter.cpp \
statuscenter/statuscenterleftpane.cpp \
2020-04-14 22:06:10 +10:00
statuscenter/statuscenterquickswitch.cpp \
2020-04-11 22:06:34 +10:00
systemsettings/about/about.cpp \
2020-07-14 14:54:02 +10:00
systemsettings/about/acknowledgements.cpp \
2020-11-16 22:15:35 +11:00
systemsettings/about/changehostnamepopover.cpp \
2020-04-23 01:21:11 +10:00
systemsettings/pluginmanagement/managepluginpopover.cpp \
systemsettings/pluginmanagement/pluginitemdelegate.cpp \
systemsettings/pluginmanagement/pluginmanagement.cpp \
systemsettings/pluginmanagement/pluginmodel.cpp \
2020-04-17 00:52:51 +10:00
systemsettings/recovery/recovery.cpp \
2020-04-11 22:06:34 +10:00
systemsettings/systemsettings.cpp \
2020-11-11 00:55:04 +11:00
systemsettings/systemsettingsleftpane.cpp
2020-04-04 23:02:17 +11:00
HEADERS += \
background/background.h \
bar/barwindow.h \
bar/chunkcontainer.h \
2020-12-14 18:11:24 +11:00
bar/currentappwidget.h \
2021-03-03 01:09:41 +11:00
bar/currentappwidgetmenu.h \
2020-04-04 23:02:17 +11:00
bar/mainbarwidget.h \
2020-04-11 22:06:34 +10:00
bar/taskbarwidget.h \
cli/commandline.h \
2020-04-04 23:02:17 +11:00
gateway/appselectionmodel.h \
gateway/appselectionmodellistdelegate.h \
gateway/gateway.h \
gateway/maingatewaywidget.h \
2020-07-02 23:22:21 +10:00
run/rundialog.h \
2020-04-11 22:06:34 +10:00
session/endsession.h \
session/endsessionbutton.h \
2020-07-05 00:03:15 +10:00
statuscenter/leftpanedelegate.h \
2020-04-11 22:06:34 +10:00
statuscenter/statuscenter.h \
statuscenter/statuscenterleftpane.h \
2020-04-14 22:06:10 +10:00
statuscenter/statuscenterquickswitch.h \
2020-04-11 22:06:34 +10:00
systemsettings/about/about.h \
2020-07-14 14:54:02 +10:00
systemsettings/about/acknowledgements.h \
2020-11-16 22:15:35 +11:00
systemsettings/about/changehostnamepopover.h \
2020-04-23 01:21:11 +10:00
systemsettings/pluginmanagement/managepluginpopover.h \
systemsettings/pluginmanagement/pluginitemdelegate.h \
systemsettings/pluginmanagement/pluginmanagement.h \
systemsettings/pluginmanagement/pluginmodel.h \
2020-04-17 00:52:51 +10:00
systemsettings/recovery/recovery.h \
2020-04-11 22:06:34 +10:00
systemsettings/systemsettings.h \
2020-11-11 00:55:04 +11:00
systemsettings/systemsettingsleftpane.h
2020-04-04 23:02:17 +11:00
FORMS += \
background/background.ui \
bar/barwindow.ui \
bar/chunkcontainer.ui \
2020-12-14 18:11:24 +11:00
bar/currentappwidget.ui \
2021-03-03 01:09:41 +11:00
bar/currentappwidgetmenu.ui \
2020-04-04 23:02:17 +11:00
bar/mainbarwidget.ui \
2020-04-11 22:06:34 +10:00
bar/taskbarwidget.ui \
2020-04-04 23:02:17 +11:00
gateway/gateway.ui \
2020-04-11 22:06:34 +10:00
gateway/maingatewaywidget.ui \
2020-07-02 23:22:21 +10:00
run/rundialog.ui \
2020-04-11 22:06:34 +10:00
session/endsession.ui \
statuscenter/statuscenter.ui \
statuscenter/statuscenterleftpane.ui \
2020-04-14 22:06:10 +10:00
statuscenter/statuscenterquickswitch.ui \
2020-04-11 22:06:34 +10:00
systemsettings/about/about.ui \
2020-07-14 14:54:02 +10:00
systemsettings/about/acknowledgements.ui \
2020-11-16 22:15:35 +11:00
systemsettings/about/changehostnamepopover.ui \
2020-04-23 01:21:11 +10:00
systemsettings/pluginmanagement/managepluginpopover.ui \
systemsettings/pluginmanagement/pluginmanagement.ui \
2020-04-17 00:52:51 +10:00
systemsettings/recovery/recovery.ui \
2020-04-11 22:06:34 +10:00
systemsettings/systemsettings.ui \
2020-11-11 00:55:04 +11:00
systemsettings/systemsettingsleftpane.ui
2020-04-11 22:06:34 +10:00
unix {
target.path = /usr/bin/
translations.files = translations/*.qm
translations.path = /usr/share/thedesk/translations
2020-04-04 23:02:17 +11:00
2020-04-19 12:00:18 +10:00
defaults.files = defaults.conf
defaults.path = /etc/theSuite/theDesk/
media.files = media/
media.path = /usr/share/thedesk/
2020-07-14 14:54:02 +10:00
acknowledgements.files = acknowledgements.html
acknowledgements.path = /usr/share/thedesk/acknowledgements.html
INSTALLS += target translations defaults media acknowledgements
2020-04-11 22:06:34 +10:00
}
2020-04-04 23:02:17 +11:00
2020-06-22 16:26:46 +10:00
DEFINES += SYSTEM_LIBRARY_DIRECTORY=\\\"$$[QT_INSTALL_LIBS]\\\"
2020-04-04 23:02:17 +11:00
unix:!macx: LIBS += -L$$OUT_PWD/../libthedesk/ -lthedesk
INCLUDEPATH += $$PWD/../libthedesk
DEPENDPATH += $$PWD/../libthedesk
RESOURCES += \
resources.qrc
2020-04-17 00:52:51 +10:00
DISTFILES += \
2020-07-14 14:54:02 +10:00
acknowledgements.html \
defaults.conf \
onboarding/OnboardingVideoForm.qml