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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-01-05 08:18:47 +08:00
|
|
|
APP_NAME = RedPandaCPP
|
2021-12-30 08:59:10 +08:00
|
|
|
|
2022-12-16 01:03:57 +08:00
|
|
|
APP_VERSION = 2.7
|
2022-01-16 15:08:54 +08:00
|
|
|
|
2021-12-30 09:04:51 +08:00
|
|
|
linux: {
|
2022-01-05 08:18:47 +08:00
|
|
|
isEmpty(PREFIX) {
|
|
|
|
PREFIX = /usr/local
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
|
pixmaps.path = $${PREFIX}/share/pixmaps
|
2022-09-25 10:16:13 +08:00
|
|
|
pixmaps.files += platform/linux/redpandaide.png
|
2022-01-05 09:08:44 +08:00
|
|
|
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}
|
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
|
|
|
|
}
|
|
|
|
}
|