diff options
author | Saturneric <[email protected]> | 2022-04-10 08:39:02 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-04-10 08:39:02 +0000 |
commit | 64a7aa0ad0c3afe643e56f097b2680cd5c86e16d (patch) | |
tree | 96f214a4a0e10edd7f3fa163a1b29d78e6796db1 /src | |
parent | <fix>(ui): fix error in IMAPFolder (diff) | |
download | GpgFrontend-64a7aa0ad0c3afe643e56f097b2680cd5c86e16d.tar.gz GpgFrontend-64a7aa0ad0c3afe643e56f097b2680cd5c86e16d.zip |
fix(project): remove automatic build
1. libarchive
2. libconfig++
Diffstat (limited to 'src')
-rw-r--r-- | src/core/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 7903ef80..7f4d5066 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -64,7 +64,7 @@ if (MINGW) find_library(LIBARCHIVE_LIB libarchive.a) target_link_libraries(gpgfrontend_core ${LIBARCHIVE_LIB} b2 expat lz4 zstd bcrypt lzma bz2 z) else () - target_link_libraries(gpgfrontend_core archive_static) + target_link_libraries(gpgfrontend_core archive) endif () # link json target_link_libraries(gpgfrontend_core |