diff --git a/.gitmodules b/.gitmodules index 8eda0188..dad87d8a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "libs/vtextedit"] path = libs/vtextedit url = https://github.com/vnotex/vtextedit.git +[submodule "libs/QHotkey"] + path = libs/QHotkey + url = https://github.com/vnotex/QHotkey.git diff --git a/libs/QHotkey b/libs/QHotkey new file mode 160000 index 00000000..79990520 --- /dev/null +++ b/libs/QHotkey @@ -0,0 +1 @@ +Subproject commit 7999052006382afbb8708bf73f877240ed8ad1e5 diff --git a/libs/libs.pro b/libs/libs.pro index 976e40ff..4d0f4ef4 100644 --- a/libs/libs.pro +++ b/libs/libs.pro @@ -1,4 +1,5 @@ TEMPLATE = subdirs SUBDIRS += \ - vtextedit + vtextedit \ + QHotkey diff --git a/src/src.pro b/src/src.pro index 890da376..14595123 100644 --- a/src/src.pro +++ b/src/src.pro @@ -46,6 +46,8 @@ include($$LIBS_FOLDER/vtextedit/src/editor/editor_export.pri) include($$LIBS_FOLDER/vtextedit/src/libs/syntax-highlighting/syntax-highlighting_export.pri) +include($$LIBS_FOLDER/QHotkey/QHotkey_export.pri) + include($$PWD/utils/utils.pri) include($$PWD/export/export.pri) diff --git a/tests/commonfull.pri b/tests/commonfull.pri index 90c5ead0..43db8a05 100644 --- a/tests/commonfull.pri +++ b/tests/commonfull.pri @@ -12,6 +12,8 @@ include($$LIBS_FOLDER/vtextedit/src/editor/editor_export.pri) include($$LIBS_FOLDER/vtextedit/src/libs/syntax-highlighting/syntax-highlighting_export.pri) +include($$LIBS_FOLDER/QHotkey/QHotkey_export.pri) + include($$SRC_FOLDER/utils/utils.pri) include($$SRC_FOLDER/export/export.pri)