File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed 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)
4
4
5
5
add_library (signing STATIC signaturevalidator.cpp )
6
6
target_link_libraries (signing
7
- PUBLIC PkgConfig::gpgme
7
+ PRIVATE PkgConfig::gpgme
8
8
PRIVATE util
9
9
)
10
10
# include the complete source to force the use of project-relative include paths
@@ -16,6 +16,7 @@ target_include_directories(signing
16
16
if (CMAKE_SIZEOF_VOID_P EQUAL 4 )
17
17
# GPGME requires this on 32-bit systems
18
18
# 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
19
20
message (WARNING "Building on 32-bit system, adding special gpgme definitions" )
20
21
target_compile_definitions (signing
21
22
PRIVATE -D_FILE_OFFSET_BITS=64 -DLARGEFILE_SOURCE
You can’t perform that action at this time.
0 commit comments