2019-09-29 23:53:29 +08:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2019-09-26T23:36:07
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT += core gui svg
|
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
TARGET = PineapplePictures
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2019-10-06 17:31:27 +08:00
|
|
|
CONFIG += c++11 lrelease embed_translations
|
2019-09-29 23:53:29 +08:00
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
main.cpp \
|
|
|
|
mainwindow.cpp \
|
|
|
|
graphicsview.cpp \
|
|
|
|
bottombuttongroup.cpp \
|
2019-10-03 17:57:14 +08:00
|
|
|
graphicsscene.cpp \
|
2019-10-06 14:12:52 +08:00
|
|
|
navigatorview.cpp \
|
2019-10-06 14:58:01 +08:00
|
|
|
opacityhelper.cpp \
|
2020-07-28 21:14:38 +08:00
|
|
|
toolbutton.cpp \
|
2020-07-29 00:57:43 +08:00
|
|
|
settings.cpp \
|
|
|
|
settingsdialog.cpp
|
2019-09-29 23:53:29 +08:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
mainwindow.h \
|
|
|
|
graphicsview.h \
|
|
|
|
bottombuttongroup.h \
|
2019-10-03 17:57:14 +08:00
|
|
|
graphicsscene.h \
|
2019-10-06 14:12:52 +08:00
|
|
|
navigatorview.h \
|
2019-10-06 14:58:01 +08:00
|
|
|
opacityhelper.h \
|
2020-07-28 21:14:38 +08:00
|
|
|
toolbutton.h \
|
2020-07-29 00:57:43 +08:00
|
|
|
settings.h \
|
|
|
|
settingsdialog.h
|
2019-09-29 23:53:29 +08:00
|
|
|
|
2019-10-06 17:31:27 +08:00
|
|
|
TRANSLATIONS = \
|
|
|
|
languages/PineapplePictures.ts \
|
|
|
|
languages/PineapplePictures_zh_CN.ts
|
2019-09-29 23:53:29 +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 += \
|
|
|
|
resources.qrc
|
2019-10-01 17:05:35 +08:00
|
|
|
|
2020-08-06 19:22:58 +08:00
|
|
|
# Generate from svg:
|
2020-07-22 19:02:23 +08:00
|
|
|
# magick convert -background none app-icon.svg -define icon:auto-resize="16,32,48,64,128,256" app-icon.ico
|
2019-10-01 17:05:35 +08:00
|
|
|
RC_ICONS = icons/app-icon.ico
|