diff options
author | saturneric <[email protected]> | 2023-10-15 06:08:07 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-15 06:08:07 +0000 |
commit | 8ad3b4df435155a6f99c66b1cf669012e97c1685 (patch) | |
tree | 0977c6fc1062b34d2906cb60407056d6df086ac4 | |
parent | feat: support flatpak build (diff) | |
download | GpgFrontend-8ad3b4df435155a6f99c66b1cf669012e97c1685.tar.gz GpgFrontend-8ad3b4df435155a6f99c66b1cf669012e97c1685.zip |
fix: remove libconfig from source to build it seperately
Diffstat (limited to '')
-rw-r--r-- | .gitmodules | 5 | ||||
-rw-r--r-- | third_party/CMakeLists.txt | 3 | ||||
m--------- | third_party/libconfig | 0 |
3 files changed, 2 insertions, 6 deletions
diff --git a/.gitmodules b/.gitmodules index 1c05e529..922e3e97 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,9 +7,6 @@ [submodule "third_party/libarchive"] path = third_party/libarchive url = https://github.com/libarchive/libarchive.git -[submodule "third_party/libconfig"] - path = third_party/libconfig - url = https://github.com/hyperrealm/libconfig.git [submodule "third_party/spdlog"] path = third_party/spdlog - url = https://github.com/gabime/spdlog.git + url = https://github.com/gabime/spdlog.git
\ No newline at end of file diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt index e04e1b41..250e11d8 100644 --- a/third_party/CMakeLists.txt +++ b/third_party/CMakeLists.txt @@ -28,5 +28,4 @@ set(JSON_BuildTests OFF CACHE INTERNAL "") add_subdirectory(json EXCLUDE_FROM_ALL) -add_subdirectory(spdlog EXCLUDE_FROM_ALL) -add_subdirectory(libconfig EXCLUDE_FROM_ALL)
\ No newline at end of file +add_subdirectory(spdlog EXCLUDE_FROM_ALL)
\ No newline at end of file diff --git a/third_party/libconfig b/third_party/libconfig deleted file mode 160000 -Subproject 4f13b7f5152427b5e511a09617ca2d9ff63f780 |