mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-29 15:12:21 +08:00
99 lines
3.2 KiB
Prolog
99 lines
3.2 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2021-10-29T16:58:36
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network concurrent webenginewidgets dbus svg
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = spark-store
|
|
TEMPLATE = app
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which as 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
|
|
|
|
DEFINES += QT_APP_DEBUG
|
|
|
|
CONFIG += c++11 link_pkgconfig
|
|
PKGCONFIG += dtkcore dtkgui dtkwidget
|
|
|
|
# Disable qWarning / qDebug output in Release
|
|
CONFIG(release, debug|release): DEFINES += QT_NO_WARNING_OUTPUT QT_NO_DEBUG_OUTPUT
|
|
|
|
# Update translation files
|
|
CONFIG(release, debug|release): system(bash $${PWD}/translate_generation.sh)
|
|
|
|
TRANSLATIONS += \
|
|
../translations/spark-store_en.ts \
|
|
../translations/spark-store_fr.ts \
|
|
../translations/spark-store_zh_CN.ts
|
|
|
|
SOURCES += \
|
|
dbus/dbussparkstoreservice.cpp \
|
|
main.cpp \
|
|
mainwindow-dtk.cpp \
|
|
backend/sparkapi.cpp \
|
|
pages/settingspage.cpp \
|
|
utils/utils.cpp \
|
|
utils/widgetanimation.cpp \
|
|
widgets/common/progressbutton.cpp \
|
|
widgets/common/webenginepage.cpp \
|
|
widgets/common/webengineview.cpp \
|
|
widgets/downloadlistwidget.cpp \
|
|
widgets/common/downloaditem.cpp \
|
|
widgets/common/smoothlistwidget.cpp \
|
|
widgets/common/smoothscrollbar.cpp \
|
|
utils/httprequest.cpp \
|
|
pages/applistpage.cpp \
|
|
backend/downloadworker.cpp \
|
|
pages/appintopage.cpp \
|
|
widgets/big_image.cpp \
|
|
backend/image_show.cpp
|
|
|
|
HEADERS += \
|
|
dbus/dbussparkstoreservice.h \
|
|
mainwindow-dtk.h \
|
|
backend/sparkapi.h \
|
|
pages/settingspage.h \
|
|
utils/utils.h \
|
|
utils/widgetanimation.h \
|
|
widgets/common/progressbutton.h \
|
|
widgets/common/webenginepage.h \
|
|
widgets/common/webengineview.h \
|
|
widgets/downloadlistwidget.h \
|
|
widgets/common/downloaditem.h \
|
|
widgets/common/smoothlistwidget.h \
|
|
widgets/common/smoothscrollbar.h \
|
|
utils/httprequest.h \
|
|
pages/applistpage.h \
|
|
backend/downloadworker.h \
|
|
pages/appintopage.h \
|
|
widgets/big_image.h \
|
|
backend/image_show.h
|
|
|
|
FORMS += \
|
|
mainwindow-dtk.ui \
|
|
pages/settingspage.ui \
|
|
widgets/downloadlistwidget.ui \
|
|
widgets/common/downloaditem.ui \
|
|
pages/applistpage.ui \
|
|
pages/appintopage.ui
|
|
|
|
RESOURCES += \
|
|
assets/assets.qrc
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/durapps/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|