diff options
author | Saturneric <[email protected]> | 2021-05-26 09:52:06 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-05-26 09:52:06 +0000 |
commit | 4f39afa8078be2bcfdd4d0f54d8a203cbb7f58c9 (patch) | |
tree | 2c40ec2a3da6978cd65a8006a6cc7427b01b7536 /src | |
parent | Fix some problems caused by negligence. (diff) | |
download | GpgFrontend-4f39afa8078be2bcfdd4d0f54d8a203cbb7f58c9.tar.gz GpgFrontend-4f39afa8078be2bcfdd4d0f54d8a203cbb7f58c9.zip |
Remove the self-compiled GpgME package
Modify the compilation settings so that the project can be compiled on MacOS.
Complete .gitignore
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/gpg/CMakeLists.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ada40b82..0158ef6c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -6,8 +6,8 @@ aux_source_directory(. BASE_SOURCE) file(GLOB_RECURSE GPG4USB_HEADER_FILES RELACTIVE ../include/* *.h) qt5_wrap_cpp(QT5_MOCS ${GPG4USB_HEADER_FILES} TARGET gpg4usb) -add_executable(gpg4usb ${BASE_SOURCE} ../gpg4usb.qrc ${QT5_MOCS} ../include/gpg/GpgGenKeyInfo.h) +add_executable(gpg4usb ${BASE_SOURCE} ../gpg4usb.qrc ${QT5_MOCS}) target_link_libraries(gpg4usb qtui gpg - Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core)
\ No newline at end of file + Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core) diff --git a/src/gpg/CMakeLists.txt b/src/gpg/CMakeLists.txt index 7e3df7de..0c164844 100644 --- a/src/gpg/CMakeLists.txt +++ b/src/gpg/CMakeLists.txt @@ -7,5 +7,5 @@ set(UTILS_DIR ${CMAKE_SOURCE_DIR}/utils) set(GPGME_LIB_DIR ${UTILS_DIR}/gpgme/lib) target_link_libraries(gpg - ${GPGME_LIB_DIR}/libgpgme.a ${GPGME_LIB_DIR}/libgpg-error.a ${GPGME_LIB_DIR}/libassuan.a - Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core)
\ No newline at end of file + gpgme gpg-error assuan + Qt5::Network Qt5::PrintSupport Qt5::Widgets Qt5::Test Qt5::Core) |