2021-04-06 23:10:57 +08:00
|
|
|
TEMPLATE = subdirs
|
|
|
|
|
|
|
|
SUBDIRS += \
|
2021-12-29 09:43:32 +08:00
|
|
|
RedPandaIDE \
|
2022-09-25 17:43:31 +08:00
|
|
|
astyle \
|
|
|
|
consolepauser \
|
|
|
|
redpanda_qt_utils \
|
|
|
|
qsynedit
|
|
|
|
|
|
|
|
astyle.subdir = tools/astyle
|
|
|
|
consolepauser.subdir = tools/consolepauser
|
|
|
|
redpanda_qt_utils.subdir = libs/redpanda_qt_utils
|
|
|
|
qsynedit.subdir = libs/qsynedit
|
2021-11-01 20:44:08 +08:00
|
|
|
|
2023-02-07 10:46:06 +08:00
|
|
|
APP_NAME = RedPandaCPP
|
|
|
|
|
2023-06-07 20:41:35 +08:00
|
|
|
APP_VERSION = 2.23
|
2023-02-07 10:46:06 +08:00
|
|
|
|
2022-05-28 20:43:07 +08:00
|
|
|
# Add the dependencies so that the RedPandaIDE project can add the depended programs
|
|
|
|
# into the main app bundle
|
2022-09-25 17:43:31 +08:00
|
|
|
RedPandaIDE.depends = astyle consolepauser qsynedit
|
|
|
|
qsynedit.depends = redpanda_qt_utils
|
2022-05-28 20:43:07 +08:00
|
|
|
|
2022-02-25 08:58:58 +08:00
|
|
|
win32: {
|
|
|
|
SUBDIRS += \
|
2022-09-25 17:43:31 +08:00
|
|
|
redpanda-win-git-askpass
|
|
|
|
redpanda-win-git-askpass.subdir = tools/redpanda-win-git-askpass
|
|
|
|
RedPandaIDE.depends += redpanda-win-git-askpass
|
2022-02-25 08:58:58 +08:00
|
|
|
}
|
|
|
|
|
2022-05-28 20:43:07 +08:00
|
|
|
unix: {
|
2022-02-26 18:50:07 +08:00
|
|
|
SUBDIRS += \
|
2022-09-25 17:43:31 +08:00
|
|
|
redpanda-git-askpass
|
|
|
|
redpanda-git-askpass.subdir = tools/redpanda-git-askpass
|
|
|
|
RedPandaIDE.depends += redpanda-git-askpass
|
2022-02-26 18:50:07 +08:00
|
|
|
}
|
|
|
|
|
2021-12-30 09:04:51 +08:00
|
|
|
linux: {
|
2022-01-05 08:18:47 +08:00
|
|
|
isEmpty(PREFIX) {
|
|
|
|
PREFIX = /usr/local
|
|
|
|
}
|
2023-01-03 12:18:02 +08:00
|
|
|
isEmpty(LIBEXECDIR) {
|
|
|
|
LIBEXECDIR = $${PREFIX}/libexec
|
|
|
|
}
|
2022-01-05 08:18:47 +08:00
|
|
|
|
2022-09-25 10:16:13 +08:00
|
|
|
QMAKE_SUBSTITUTES += platform/linux/redpandaide.desktop.in
|
2022-01-05 09:42:26 +08:00
|
|
|
|
2022-01-05 08:18:47 +08:00
|
|
|
resources.path = $${PREFIX}/share/$${APP_NAME}
|
2022-09-25 10:16:13 +08:00
|
|
|
resources.files += platform/linux/templates
|
2021-12-30 09:04:51 +08:00
|
|
|
INSTALLS += resources
|
2022-01-05 08:18:47 +08:00
|
|
|
|
2022-01-05 09:08:44 +08:00
|
|
|
docs.path = $${PREFIX}/share/doc/$${APP_NAME}
|
2022-01-05 08:18:47 +08:00
|
|
|
docs.files += README.md
|
|
|
|
docs.files += NEWS.md
|
|
|
|
docs.files += LICENSE
|
|
|
|
INSTALLS += docs
|
|
|
|
|
2023-01-19 20:56:59 +08:00
|
|
|
equals(XDG_ADAPTIVE_ICON, "ON") {
|
|
|
|
xdgicons.path = $${PREFIX}/share/icons/hicolor/scalable/apps/
|
|
|
|
xdgicons.files += platform/linux/redpandaide.svg
|
|
|
|
REDPANDA_ICON_PATH = redpandaide
|
|
|
|
INSTALLS += xdgicons
|
|
|
|
} else {
|
|
|
|
pixmaps.path = $${PREFIX}/share/pixmaps
|
|
|
|
pixmaps.files += platform/linux/redpandaide.png
|
|
|
|
REDPANDA_ICON_PATH = $${PREFIX}/share/pixmaps/redpandaide.png
|
|
|
|
INSTALLS += pixmaps
|
|
|
|
}
|
2022-01-05 08:18:47 +08:00
|
|
|
|
2022-01-05 09:42:26 +08:00
|
|
|
desktop.path = $${PREFIX}/share/applications
|
2022-09-25 10:16:13 +08:00
|
|
|
desktop.files += platform/linux/redpandaide.desktop
|
2022-01-05 09:42:26 +08:00
|
|
|
INSTALLS += desktop
|
2021-12-30 09:04:51 +08:00
|
|
|
}
|
2022-01-16 15:08:54 +08:00
|
|
|
|
|
|
|
win32: {
|
|
|
|
!isEmpty(PREFIX) {
|
|
|
|
target.path = $${PREFIX}
|
2022-09-25 10:16:13 +08:00
|
|
|
QMAKE_SUBSTITUTES += platform/windows/installer-scripts/config.nsh.in
|
|
|
|
QMAKE_SUBSTITUTES += platform/windows/installer-scripts/config32.nsh.in
|
|
|
|
QMAKE_SUBSTITUTES += platform/windows/installer-scripts/config-clang.nsh.in
|
2022-01-16 15:08:54 +08:00
|
|
|
|
|
|
|
resources.path = $${PREFIX}
|
2023-02-14 23:42:11 +08:00
|
|
|
|
2022-09-25 10:16:13 +08:00
|
|
|
resources.files += platform/windows/templates
|
|
|
|
resources.files += platform/windows/installer-scripts/config.nsh
|
|
|
|
resources.files += platform/windows/installer-scripts/config32.nsh
|
|
|
|
resources.files += platform/windows/installer-scripts/config-clang.nsh
|
2022-01-16 15:08:54 +08:00
|
|
|
resources.files += README.md
|
|
|
|
resources.files += NEWS.md
|
|
|
|
resources.files += LICENSE
|
|
|
|
resources.files += RedPandaIDE/images/devcpp.ico
|
|
|
|
|
|
|
|
INSTALLS += resources
|
2023-02-14 23:42:11 +08:00
|
|
|
|
|
|
|
equals(X86_64, "ON") {
|
|
|
|
extra_templates.path = $${PREFIX}/templates
|
|
|
|
extra_templates.files += platform/windows/templates-win64/*
|
|
|
|
INSTALLS += extra_templates
|
|
|
|
}
|
2022-01-16 15:08:54 +08:00
|
|
|
}
|
|
|
|
}
|