diff options
author | Saturneric <[email protected]> | 2021-07-05 19:56:16 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-05 19:56:16 +0000 |
commit | 5253df596cbc7f0894b013c3c511e10f3243b4f1 (patch) | |
tree | 75639a33086d3ee6a69a4cc4058494bbd9ea424c | |
parent | Improve large file reading. (diff) | |
download | GpgFrontend-5253df596cbc7f0894b013c3c511e10f3243b4f1.tar.gz GpgFrontend-5253df596cbc7f0894b013c3c511e10f3243b4f1.zip |
Edit Project Configuration
Diffstat (limited to '')
-rw-r--r-- | src/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 97fae047..deeabadb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -121,11 +121,17 @@ IF (MINGW) gpgfrontend-ui gpg Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core crypto ssl) +elseif(APPLE) + message(STATUS "Link Application Static Library For macOS") + target_link_libraries(${AppName} + gpgfrontend-ui gpg + Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core + crypto ssl) else() message(STATUS "Link Application Static Library For UNIX") target_link_libraries(${AppName} gpgfrontend-ui gpg Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core - crypto ssl) + crypto ssl pthread) endif() |