RedPanda-CPP/RedPandaIDE/RedPandaIDE.pro

83 lines
2.2 KiB
Prolog
Raw Normal View History

2021-04-06 23:10:57 +08:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
2021-04-07 21:13:15 +08:00
CONFIG += c++14
2021-04-06 23:10:57 +08:00
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
2021-04-20 22:24:33 +08:00
compiler/compiler.cpp \
compiler/compilermanager.cpp \
compiler/executablerunner.cpp \
2021-04-20 22:24:33 +08:00
compiler/filecompiler.cpp \
2021-04-06 23:10:57 +08:00
editor.cpp \
editorlist.cpp \
main.cpp \
mainwindow.cpp \
2021-04-29 20:54:44 +08:00
qsynedit/CodeFolding.cpp \
qsynedit/Constants.cpp \
qsynedit/MiscClasses.cpp \
2021-05-01 10:57:41 +08:00
qsynedit/MiscProcs.cpp \
2021-05-03 10:15:40 +08:00
qsynedit/SynEdit.cpp \
2021-05-01 10:57:41 +08:00
qsynedit/TextBuffer.cpp \
2021-04-29 20:54:44 +08:00
qsynedit/highlighter/base.cpp \
2021-05-01 10:57:41 +08:00
qsynedit/highlighter/composition.cpp \
2021-04-29 20:54:44 +08:00
qsynedit/highlighter/cpp.cpp \
2021-04-16 22:04:48 +08:00
settingsdialog/compilersetdirectorieswidget.cpp \
settingsdialog/compilersetoptionwidget.cpp \
settings.cpp \
2021-04-16 22:04:48 +08:00
settingsdialog/settingsdialog.cpp \
settingsdialog/settingswidget.cpp \
2021-04-11 21:33:08 +08:00
systemconsts.cpp \
2021-04-24 15:57:45 +08:00
utils.cpp \
widgets/issuestable.cpp
2021-04-06 23:10:57 +08:00
HEADERS += \
2021-04-20 22:24:33 +08:00
compiler/compiler.h \
compiler/compilermanager.h \
compiler/executablerunner.h \
2021-04-20 22:24:33 +08:00
compiler/filecompiler.h \
2021-04-06 23:10:57 +08:00
editor.h \
editorlist.h \
mainwindow.h \
2021-04-29 20:54:44 +08:00
qsynedit/CodeFolding.h \
qsynedit/Constants.h \
qsynedit/MiscClasses.h \
2021-05-01 10:57:41 +08:00
qsynedit/MiscProcs.h \
2021-05-03 10:15:40 +08:00
qsynedit/SynEdit.h \
2021-05-01 10:57:41 +08:00
qsynedit/TextBuffer.h \
2021-05-03 10:15:40 +08:00
qsynedit/Types.h \
2021-04-29 20:54:44 +08:00
qsynedit/highlighter/base.h \
2021-05-01 10:57:41 +08:00
qsynedit/highlighter/composition.h \
2021-04-29 20:54:44 +08:00
qsynedit/highlighter/cpp.h \
2021-04-16 22:04:48 +08:00
settingsdialog/compilersetdirectorieswidget.h \
settingsdialog/compilersetoptionwidget.h \
settings.h \
2021-04-16 22:04:48 +08:00
settingsdialog/settingsdialog.h \
settingsdialog/settingswidget.h \
2021-04-11 21:33:08 +08:00
systemconsts.h \
2021-04-24 15:57:45 +08:00
utils.h \
common.h \
widgets/issuestable.h
2021-04-06 23:10:57 +08:00
FORMS += \
mainwindow.ui \
2021-04-16 22:04:48 +08:00
settingsdialog/compilersetdirectorieswidget.ui \
settingsdialog/compilersetoptionwidget.ui \
settingsdialog/settingsdialog.ui
2021-04-06 23:10:57 +08:00
TRANSLATIONS += \
RedPandaIDE_zh_CN.ts
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
2021-04-07 21:13:15 +08:00
RESOURCES += \
icons.qrc