File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pkg_check_modules(gpgme gpgme>=1.10.0 REQUIRED IMPORTED_TARGET)
44
55add_library (signing STATIC signaturevalidator.cpp )
66target_link_libraries (signing
7- PUBLIC PkgConfig::gpgme
7+ PRIVATE PkgConfig::gpgme
88 PRIVATE util
99)
1010# include the complete source to force the use of project-relative include paths
@@ -16,6 +16,7 @@ target_include_directories(signing
1616if (CMAKE_SIZEOF_VOID_P EQUAL 4)
1717 # GPGME requires this on 32-bit systems
1818 # https://www.gnupg.org/documentation/manuals/gpgme/Largefile-Support-_0028LFS_0029.html
19+ # probably an oversight by the distribution, it doesn't list these flags in gpgme.pc
1920 message (WARNING "Building on 32-bit system, adding special gpgme definitions" )
2021 target_compile_definitions (signing
2122 PRIVATE -D_FILE_OFFSET_BITS=64 -DLARGEFILE_SOURCE
You can’t perform that action at this time.
0 commit comments