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 \
|
2021-04-21 18:58:35 +08:00
|
|
|
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-05-14 23:56:43 +08:00
|
|
|
qsynedit/CodeFolding.cpp \
|
|
|
|
qsynedit/Constants.cpp \
|
|
|
|
qsynedit/KeyStrokes.cpp \
|
|
|
|
qsynedit/MiscClasses.cpp \
|
|
|
|
qsynedit/MiscProcs.cpp \
|
|
|
|
qsynedit/SynEdit.cpp \
|
|
|
|
qsynedit/TextBuffer.cpp \
|
|
|
|
qsynedit/TextPainter.cpp \
|
|
|
|
qsynedit/highlighter/base.cpp \
|
|
|
|
qsynedit/highlighter/composition.cpp \
|
|
|
|
qsynedit/highlighter/cpp.cpp \
|
2021-04-16 22:04:48 +08:00
|
|
|
settingsdialog/compilersetdirectorieswidget.cpp \
|
|
|
|
settingsdialog/compilersetoptionwidget.cpp \
|
2021-04-08 10:29:21 +08:00
|
|
|
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 \
|
2021-04-21 18:58:35 +08:00
|
|
|
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-05-14 23:56:43 +08:00
|
|
|
qsynedit/CodeFolding.h \
|
|
|
|
qsynedit/Constants.h \
|
|
|
|
qsynedit/KeyStrokes.h \
|
|
|
|
qsynedit/MiscClasses.h \
|
|
|
|
qsynedit/MiscProcs.h \
|
|
|
|
qsynedit/SynEdit.h \
|
|
|
|
qsynedit/TextBuffer.h \
|
|
|
|
qsynedit/TextPainter.h \
|
|
|
|
qsynedit/Types.h \
|
|
|
|
qsynedit/highlighter/base.h \
|
|
|
|
qsynedit/highlighter/composition.h \
|
|
|
|
qsynedit/highlighter/cpp.h \
|
2021-04-16 22:04:48 +08:00
|
|
|
settingsdialog/compilersetdirectorieswidget.h \
|
|
|
|
settingsdialog/compilersetoptionwidget.h \
|
2021-04-08 10:29:21 +08:00
|
|
|
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 += \
|
2021-04-13 22:17:18 +08:00
|
|
|
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
|
|
|
|
2021-04-08 10:29:21 +08:00
|
|
|
RESOURCES += \
|
|
|
|
icons.qrc
|
2021-04-21 18:58:35 +08:00
|
|
|
|
2021-05-14 23:56:43 +08:00
|
|
|
#win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../QScintilla/src/release/ -lqscintilla2_qt5d
|
|
|
|
#else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../QScintilla/src/debug/ -lqscintilla2_qt5d
|
|
|
|
#else:unix: LIBS += -L$$OUT_PWD/../../QScintilla/src/ -lqscintilla2_qt5d
|
2021-05-14 12:27:53 +08:00
|
|
|
|
2021-05-14 23:56:43 +08:00
|
|
|
#INCLUDEPATH += $$PWD/../../QScintilla/src
|
|
|
|
#DEPENDPATH += $$PWD/../../QScintilla/src
|