45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
QT += core widgets gui xml
|
|
|
|
CONFIG += c++17
|
|
|
|
# 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
|
|
|
|
# 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
|
|
|
|
INCLUDEPATH += $$PWD/include/
|
|
|
|
SOURCES += \
|
|
src/addlinkdialog.cpp \
|
|
src/coloraction.cpp \
|
|
src/htmlhighlighter.cpp \
|
|
src/htmltextedit.cpp \
|
|
src/richtexteditor.cpp \
|
|
src/richtexteditordialog.cpp \
|
|
src/richtexteditortoolbar.cpp
|
|
|
|
HEADERS += \
|
|
include/addlinkdialog.h \
|
|
include/coloraction.h \
|
|
include/htmlhighlighter.h \
|
|
include/htmltextedit.h \
|
|
include/richtexteditor.h \
|
|
include/richtexteditordialog.h \
|
|
include/richtexteditortoolbar.h
|
|
|
|
FORMS += \
|
|
uis/addlinkdialog.ui \
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
RESOURCES += \
|
|
iconos.qrc
|