111 lines
3.4 KiB
Prolog
111 lines
3.4 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2022-10-12T12:07:07
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui dtkwidget
|
|
|
|
TARGET = WingToolPy
|
|
TEMPLATE = lib
|
|
CONFIG += plugin
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
SOURCES += \
|
|
wingtoolpy.cpp \
|
|
QCodeEditor/QCodeEditor.cpp \
|
|
QCodeEditor/QFramedTextAttribute.cpp \
|
|
QCodeEditor/QLineNumberArea.cpp \
|
|
QCodeEditor/QPythonHighlighter.cpp \
|
|
QCodeEditor/QStyleSyntaxHighlighter.cpp \
|
|
QCodeEditor/QSyntaxStyle.cpp \
|
|
QCodeEditor/QLanguage.cpp \
|
|
scriptwindow.cpp \
|
|
recentfilemanager.cpp \
|
|
PythonQt/gui/PythonQtScriptingConsole.cpp \
|
|
findbar.cpp \
|
|
linebar.cpp \
|
|
replacebar.cpp \
|
|
scriptmanager.cpp \
|
|
scriptcenterwindow.cpp \
|
|
wingtoolpyservice.cpp \
|
|
aboutdialog.cpp
|
|
|
|
HEADERS += \
|
|
wingtoolpy.h \
|
|
QCodeEditor/QCodeEditor.hpp \
|
|
QCodeEditor/QFramedTextAttribute.hpp \
|
|
QCodeEditor/QLineNumberArea.hpp \
|
|
QCodeEditor/QPythonHighlighter.hpp \
|
|
QCodeEditor/QStyleSyntaxHighlighter.hpp \
|
|
QCodeEditor/QSyntaxStyle.hpp \
|
|
QCodeEditor/QHighlightBlockRule.hpp \
|
|
QCodeEditor/QHighlightRule.hpp \
|
|
QCodeEditor/QLanguage.hpp \
|
|
scriptwindow.h \
|
|
recentfilemanager.h \
|
|
PythonQt/PythonQt.h \
|
|
PythonQt/PythonQtBoolResult.h \
|
|
PythonQt/PythonQtClassInfo.h \
|
|
PythonQt/PythonQtClassWrapper.h \
|
|
PythonQt/PythonQtConversion.h \
|
|
PythonQt/PythonQtCppWrapperFactory.h \
|
|
PythonQt/PythonQtDoc.h \
|
|
PythonQt/PythonQtImporter.h \
|
|
PythonQt/PythonQtImportFileInterface.h \
|
|
PythonQt/PythonQtInstanceWrapper.h \
|
|
PythonQt/PythonQtMethodInfo.h \
|
|
PythonQt/PythonQtMisc.h \
|
|
PythonQt/PythonQtObjectPtr.h \
|
|
PythonQt/PythonQtProperty.h \
|
|
PythonQt/PythonQtPythonInclude.h \
|
|
PythonQt/PythonQtQFileImporter.h \
|
|
PythonQt/PythonQtSignal.h \
|
|
PythonQt/PythonQtSignalReceiver.h \
|
|
PythonQt/PythonQtSlot.h \
|
|
PythonQt/PythonQtSlotDecorator.h \
|
|
PythonQt/PythonQtStdDecorators.h \
|
|
PythonQt/PythonQtStdIn.h \
|
|
PythonQt/PythonQtStdOut.h \
|
|
PythonQt/PythonQtSystem.h \
|
|
PythonQt/PythonQtUtils.h \
|
|
PythonQt/PythonQtVariants.h \
|
|
PythonQt/gui/PythonQtScriptingConsole.h \
|
|
findbar.h \
|
|
linebar.h \
|
|
replacebar.h \
|
|
scriptmanager.h \
|
|
scriptcenterwindow.h \
|
|
PythonQt/PythonQt_QtAll.h \
|
|
../WingTool/plugin/iwingtoolplg.h \
|
|
wingtoolpyservice.h \
|
|
aboutdialog.h
|
|
|
|
DISTFILES += WingToolPy.json
|
|
|
|
TRANSLATIONS += \
|
|
$$PWD/lang/WingToolPy.ts
|
|
|
|
LIBS += $$PWD/PythonQt/libPythonQt-Qt5-Python3.7.a \
|
|
$$PWD/PythonQt/libPythonQt_QtAll-Qt5-Python3.7.a
|
|
|
|
DEFINES += PYTHONQT_CATCH_ALL_EXCEPTIONS
|
|
|
|
LIBS += /usr/lib/x86_64-linux-gnu/libpython3.7m.so.1
|
|
INCLUDEPATH += -I /usr/include/python3.7
|
|
|
|
RESOURCES += \
|
|
resources.qrc
|