diff options
author | Saturneric <[email protected]> | 2022-01-12 17:56:12 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-12 17:56:12 +0000 |
commit | 9064eb6ae14731b698f4304f0e25ef52ba6e931f (patch) | |
tree | 27d9ed253d8d343bd7882c4588d0762ff3995b69 /.gitmodules | |
parent | <refactor, fix>(ui): Refactored settings object to fix issues. (diff) | |
download | GpgFrontend-9064eb6ae14731b698f4304f0e25ef52ba6e931f.tar.gz GpgFrontend-9064eb6ae14731b698f4304f0e25ef52ba6e931f.zip |
<refactor, chore>(project, ui, core): Normalize third-party dependencies.
1. All third-party dependencies are in the form of submodules .
2. Compile third-party dependencies together at compile time.
3. Strip 3rd party dependencies from source code.
4. Normalize the reference of the header file of the third-party dependency, and only refer to it once.
5. Remove all find_libraries and use build-time static library files instead.
Diffstat (limited to '.gitmodules')
-rw-r--r-- | .gitmodules | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/.gitmodules b/.gitmodules index f101f456..fbfcf0c8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "third_party/AppImageUpdate"] - path = third_party/AppImageUpdate - url = https://github.com/AppImage/AppImageUpdate [submodule "third_party/gpgme"] path = third_party/gpgme url = https://github.com/saturneric/gpgme @@ -13,3 +10,15 @@ [submodule "third_party/vmime"] path = third_party/vmime url = https://github.com/saturneric/vmime +[submodule "third_party/json"] + path = third_party/json + url = https://github.com/saturneric/json +[submodule "third_party/easyloggingpp"] + path = third_party/easyloggingpp + url = https://github.com/saturneric/easyloggingpp +[submodule "third_party/qt-aes"] + path = third_party/qt-aes + url = https://github.com/saturneric/Qt-AES +[submodule "third_party/smtp-mime"] + path = third_party/smtp-mime + url = https://github.com/saturneric/SmtpClient-for-Qt |