diff --git a/QtHtmlEditor.pri b/QtHtmlEditor.pri
new file mode 100644
index 0000000..71f8a70
--- /dev/null
+++ b/QtHtmlEditor.pri
@@ -0,0 +1,44 @@
+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