The "io_editor" component is a simple Qt5 text editor that writes to standard out and reads back from stdin. It is intended for use with an interactive interpreter, such as a shell. The "terminal_editor" depot package is provided to connect the editor to a terminal server.
14 lines
221 B
Prolog
14 lines
221 B
Prolog
QT += widgets
|
|
|
|
HEADERS = \
|
|
highlighter.h \
|
|
mainwindow.h
|
|
SOURCES = \
|
|
highlighter.cpp \
|
|
mainwindow.cpp \
|
|
main.cpp
|
|
|
|
# install
|
|
#target.path = $$[QT_INSTALL_EXAMPLES]/widgets/richtext/syntaxhighlighter
|
|
INSTALLS += target
|