diff options
author | Andre Heinecke <[email protected]> | 2016-03-02 15:22:20 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-03-02 15:23:47 +0000 |
commit | c5291a88913ace8f2115021b69c7aeb59b4f79d4 (patch) | |
tree | 271d19679b0a50db68bfcfa0ff83fd1c7fa32a3d /lang/cpp | |
parent | Add enable-languages build option (diff) | |
download | gpgme-c5291a88913ace8f2115021b69c7aeb59b4f79d4.tar.gz gpgme-c5291a88913ace8f2115021b69c7aeb59b4f79d4.zip |
Add header installation
* lang/cpp/src/Makefile.am: Add headers as deps and install them.
(AM_CPPFLAGS): Add BUILDING_GPGMEPP to be used in export macros.
Diffstat (limited to 'lang/cpp')
-rw-r--r-- | lang/cpp/src/Makefile.am | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/lang/cpp/src/Makefile.am b/lang/cpp/src/Makefile.am index 3b7a5141..0d6e4c1f 100644 --- a/lang/cpp/src/Makefile.am +++ b/lang/cpp/src/Makefile.am @@ -32,8 +32,28 @@ main_sources = \ scdgetinfoassuantransaction.cpp gpgagentgetinfoassuantransaction.cpp \ vfsmountresult.cpp configuration.cpp -libgpgmepp_la_SOURCES = $(main_sources) context_vanilla.cpp +gpgmepp_headers = \ + assuanresult.h configuration.h context.h data.h decryptionresult.h \ + defaultassuantransaction.h editinteractor.h encryptionresult.h \ + engineinfo.h error.h eventloopinteractor.h exception.h global.h \ + gpgadduserideditinteractor.h gpgagentgetinfoassuantransaction.h \ + gpgmefw.h gpgsetexpirytimeeditinteractor.h \ + gpgsetownertrusteditinteractor.h gpgsignkeyeditinteractor.h \ + importresult.h keygenerationresult.h key.h keylistresult.h \ + notation.h result.h scdgetinfoassuantransaction.h signingresult.h \ + trustitem.h verificationresult.h vfsmountresult.h gpgmepp_export.h -AM_CPPFLAGS = @GPG_ERROR_CFLAGS@ @LIBASSUAN_CFLAGS@ +interface_headers= \ + interfaces/assuantransaction.h interfaces/dataprovider.h \ + interfaces/passphraseprovider.h interfaces/progressprovider.h + +gpgmeppincludedir = $(includedir)/gpgme++ +gpgmeppinclude_HEADERS = $(gpgmepp_headers) +nobase_gpgmeppinclude_HEADERS = $(interface_headers) + +libgpgmepp_la_SOURCES = $(main_sources) $(gpgmepp_headers) context_vanilla.cpp \ + $(interface_headers) + +AM_CPPFLAGS = @GPG_ERROR_CFLAGS@ @LIBASSUAN_CFLAGS@ -DBUILDING_GPGMEPP libgpgmepp_la_LIBADD = ../../../src/libgpgme.la @LIBASSUAN_LIBS@ |