diff options
author | saturneric <[email protected]> | 2024-07-28 18:29:22 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-28 18:29:22 +0000 |
commit | ad558726a3e1c2665bd075d99349292cb5ce9eb1 (patch) | |
tree | 93a32b1160b26141f41a7a32ad8be8306af25282 | |
parent | fix: correct header search path of application (diff) | |
download | GpgFrontend-ad558726a3e1c2665bd075d99349292cb5ce9eb1.tar.gz GpgFrontend-ad558726a3e1c2665bd075d99349292cb5ce9eb1.zip |
fix: application should link gpgfrontend_core
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 19f4e518..c63724a9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -420,7 +420,7 @@ endif() # link options for GpgFrontend if (BUILD_APPLICATION) - target_link_libraries(${AppName} gpgfrontend_ui gpgfrontend_test) + target_link_libraries(${AppName} gpgfrontend_core gpgfrontend_ui gpgfrontend_test) if (MINGW) message(STATUS "Link Application Library For MINGW") target_link_libraries(${AppName} crypto) |