RedPanda-CPP/RedPandaIDE/RedPandaIDE.pro

117 lines
3.6 KiB
Prolog
Raw Normal View History

2021-04-06 23:10:57 +08:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
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-05-26 00:04:20 +08:00
HighlighterManager.cpp \
2021-06-13 23:22:26 +08:00
colorschema.cpp \
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-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 \
2021-06-10 09:34:59 +08:00
qsynedit/exporter/synexporter.cpp \
qsynedit/exporter/synhtmlexporter.cpp \
qsynedit/exporter/synrtfexporter.cpp \
2021-05-14 23:56:43 +08:00
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 \
settings.cpp \
settingsdialog/editorclipboardwidget.cpp \
2021-06-14 08:01:00 +08:00
settingsdialog/editorcolorschemewidget.cpp \
settingsdialog/editorfontwidget.cpp \
2021-06-07 11:02:03 +08:00
settingsdialog/editorgeneralwidget.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 \
2021-06-07 11:02:03 +08:00
widgets/coloredit.cpp \
2021-04-24 15:57:45 +08:00
widgets/issuestable.cpp
2021-04-06 23:10:57 +08:00
HEADERS += \
2021-05-26 00:04:20 +08:00
HighlighterManager.h \
2021-06-13 23:22:26 +08:00
colorschema.h \
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-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 \
2021-06-10 09:34:59 +08:00
qsynedit/exporter/synexporter.h \
qsynedit/exporter/synhtmlexporter.h \
qsynedit/exporter/synrtfexporter.h \
2021-05-14 23:56:43 +08:00
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 \
settings.h \
settingsdialog/editorclipboardwidget.h \
2021-06-14 08:01:00 +08:00
settingsdialog/editorcolorschemewidget.h \
settingsdialog/editorfontwidget.h \
2021-06-07 11:02:03 +08:00
settingsdialog/editorgeneralwidget.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 \
2021-06-07 11:02:03 +08:00
widgets/coloredit.h \
2021-04-24 15:57:45 +08:00
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/editorclipboardwidget.ui \
2021-06-14 08:01:00 +08:00
settingsdialog/editorcolorschemewidget.ui \
settingsdialog/editorfontwidget.ui \
2021-06-07 11:02:03 +08:00
settingsdialog/editorgeneralwidget.ui \
2021-04-16 22:04:48 +08:00
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
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