blob: d4ebfde99171ca306cc0e5af18dda1a3afe27b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
KDE_OPTIONS = foreign
#AM_CXXFLAGS = -Wno-deprecated-declarations
SUBDIRS = interfaces .
INCLUDES = -I$(top_srcdir)/libtdenetwork -I$(top_srcdir)/libtdenetwork/gpgmepp \
$(GPGME_CFLAGS) $(all_includes)
gpgmeppdir = $(includedir)/gpgme++
gpgmepp_HEADERS = context.h \
key.h \
trustitem.h \
eventloopinteractor.h \
data.h \
gpgmefw.h \
result.h \
keylistresult.h \
keygenerationresult.h \
importresult.h \
decryptionresult.h \
verificationresult.h \
signingresult.h \
encryptionresult.h \
engineinfo.h
noinst_HEADERS = context_p.h data_p.h shared.h callbacks.h gpgme-0-3-compat.h result_p.h util.h
lib_LTLIBRARIES = libgpgme++.la
libgpgme___la_SOURCES = context.cpp \
key.cpp \
trustitem.cpp \
data.cpp \
callbacks.cpp \
eventloopinteractor.cpp \
keylistresult.cpp \
keygenerationresult.cpp \
importresult.cpp \
decryptionresult.cpp \
verificationresult.cpp \
signingresult.cpp \
encryptionresult.cpp \
engineinfo.cpp
# --version-info CURRENT:REVISION:AGE
# (Code changed: REVISION++)
# (Interfaces added/removed/changed: CURRENT++, REVISION=0)
# (Interfaces added: AGE++)
# (Interfaces removed/changed: AGE=0)
libgpgme___la_LDFLAGS = -no-undefined -version-info 4:0:4
libgpgme___la_LIBADD = $(GPGME_LIBS)
libgpgme___la_DEPENDENCIES = $(GPGME_LIBS_DEP)
|