blob: 6d06f69fa4351eb3c983e2307b45f5189dd489c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
include_directories(${GPGME_INCLUDE_DIRS})
add_library(mailcrypto STATIC
mailcrypto.cpp
crypto.cpp
)
target_link_libraries(mailcrypto
PUBLIC
Qt5::Core
KF5::Mime
Gpgme::Gpgme
)
|