diff options
author | saturneric <[email protected]> | 2024-11-27 09:20:37 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-11-27 09:20:37 +0000 |
commit | d52d7d683f058f116c832624b2ec8a977017aaec (patch) | |
tree | ade80b5e903bf840fcdc3ccddc7a9a289c3b5b06 | |
parent | fix: undefined reference to __imp_* (diff) | |
download | Modules-d52d7d683f058f116c832624b2ec8a977017aaec.tar.gz Modules-d52d7d683f058f116c832624b2ec8a977017aaec.zip |
fix: target_link_libraries with a target
must be either all-keyword or all-plain
-rw-r--r-- | src/m_email/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/m_email/CMakeLists.txt b/src/m_email/CMakeLists.txt index 46283bc..b50eb5a 100644 --- a/src/m_email/CMakeLists.txt +++ b/src/m_email/CMakeLists.txt @@ -46,7 +46,7 @@ set(VMIME_HAVE_MESSAGING_PROTO_SENDMAIL OFF CACHE BOOL "No Sendmail protocol") add_subdirectory(vmime "vmime" EXCLUDE_FROM_ALL) if(MINGW) - target_link_libraries(vmime-static PRIVATE ws2_32) + target_link_libraries(vmime-static ws2_32 mlang) endif() # install dir |