diff options
author | Saturneric <[email protected]> | 2022-01-13 01:42:30 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-13 02:38:04 +0000 |
commit | d307f5e025b98088ff4655fafb9142a4d12e52be (patch) | |
tree | 8544a42b4afc543efa2f5a22543aeb9a9103a32f /src | |
parent | <chore>(project, resource, ci): fix ci of debug.yml (diff) | |
download | GpgFrontend-d307f5e025b98088ff4655fafb9142a4d12e52be.tar.gz GpgFrontend-d307f5e025b98088ff4655fafb9142a4d12e52be.zip |
<chore>(project, resource, ci): fix ci of debug.yml
1. Adjust the ci configuration file for macOS and Windows.
2. Fixed the problem of OpenSSL under macOS.
Diffstat (limited to '')
-rw-r--r-- | src/ui/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index f51d02e5..2b18e971 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -43,6 +43,9 @@ target_link_libraries(${GPGFRONTEND_UI_LIB_NAME} target_link_libraries(${GPGFRONTEND_UI_LIB_NAME} gpgfrontend_core) +# link openssl +target_link_libraries(${GPGFRONTEND_UI_LIB_NAME} OpenSSL::SSL OpenSSL::Crypto) + target_include_directories(gpgfrontend_ui PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/${GPGFRONTEND_UI_LIB_NAME}_autogen/include) |