ukui-theme-customizer/kylin-theme-builder.pro

89 lines
3.0 KiB
Prolog
Raw Normal View History

2023-11-07 16:39:38 +08:00
QT += core gui svg KWindowSystem
2023-08-25 17:35:01 +08:00
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# 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 += \
2023-10-19 15:58:35 +08:00
src/build/buildWidget.cpp \
2023-09-18 14:57:27 +08:00
src/build/buildcheck.cpp \
2023-10-19 15:58:35 +08:00
src/build/buildcheckwidget.cpp \
2023-09-18 14:57:27 +08:00
src/fileProcess/bridge.cpp \
src/fileProcess/diroperation.cpp \
2023-09-18 14:57:27 +08:00
src/fileProcess/filecheck.cpp \
src/fileProcess/fileprocess.cpp \
src/fileProcess/configfilemanager.cpp \
src/fileProcess/historyinfoload.cpp \
2023-09-18 14:57:27 +08:00
src/module/cacheconfirmedwidget.cpp \
src/module/cursorthemefeature.cpp \
src/module/cursorthemewidget.cpp \
src/module/globalthemefeature.cpp \
src/module/globalthemewidget.cpp \
2023-11-01 14:59:12 +08:00
src/module/grubthemefeature.cpp \
src/module/grubthemewidget.cpp \
2023-09-19 16:07:00 +08:00
src/module/historywidget.cpp \
2023-09-18 14:57:27 +08:00
src/module/iconthemewidget.cpp \
src/module/iconwidgetfeature.cpp \
src/module/infocreatefeature.cpp \
src/module/infocreatewidget.cpp \
2023-08-28 15:47:46 +08:00
src/main.cpp \
src/maininterface.cpp \
2023-09-04 16:22:00 +08:00
src/mainwindow.cpp \
2023-11-01 14:59:12 +08:00
src/module/plymouththemefeature.cpp \
src/module/plymouththemewidget.cpp \
2023-09-04 16:22:00 +08:00
src/titlebar.cpp
2023-08-25 17:35:01 +08:00
HEADERS += \
2023-10-19 15:58:35 +08:00
src/build/build.h \
src/build/buildWidget.h \
src/build/buildcheckwidget.h \
2023-09-18 14:57:27 +08:00
src/fileProcess/bridge.h \
src/fileProcess/diroperation.h \
2023-09-18 14:57:27 +08:00
src/fileProcess/filecheck.h \
src/fileProcess/fileprocess.h \
src/fileProcess/configfilemanager.h \
src/fileProcess/historyinfoload.h \
2023-09-18 14:57:27 +08:00
src/module/cacheconfirmedwidget.h \
src/module/cursorthemefeature.h \
src/module/cursorthemewidget.h \
src/module/globalthemefeature.h \
src/module/globalthemewidget.h \
2023-11-01 14:59:12 +08:00
src/module/grubthemefeature.h \
src/module/grubthemewidget.h \
2023-09-19 16:07:00 +08:00
src/module/historywidget.h \
2023-09-18 14:57:27 +08:00
src/module/iconthemewidget.h \
src/module/iconwidgetfeature.h \
src/module/infocreatefeature.h \
src/module/infocreatewidget.h \
2023-08-28 15:47:46 +08:00
src/maininterface.h \
2023-09-04 16:22:00 +08:00
src/mainwindow.h \
2023-11-01 14:59:12 +08:00
src/module/plymouththemefeature.h \
src/module/plymouththemewidget.h \
2023-09-04 16:22:00 +08:00
src/titlebar.h
2023-08-25 17:35:01 +08:00
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
resource.qrc
2023-11-02 11:31:20 +08:00
DISTFILES += \
translation/themebuilder_en_US.qm \
translation/themebuilder_zh_CN.qm
TRANSLATIONS += translation/themebuilder_zh_CN.ts \
translation/themebuilder_en_US.ts \