diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 372b60f3..6b59da17 100644 --- a/Makefile.am +++ b/Makefile.am @@ -46,6 +46,7 @@ tests_sources = \ src/xmpp/xmpp.h src/xmpp/form.c \ src/ui/ui.h \ src/otr/otr.h \ + src/pgp/gpg.h \ src/command/command.h src/command/command.c \ src/command/commands.h src/command/commands.c \ src/tools/parser.c \ @@ -67,6 +68,7 @@ tests_sources = \ src/event/ui_events.c src/event/ui_events.h \ tests/xmpp/stub_xmpp.c \ tests/ui/stub_ui.c \ + tests/pgp/stub_gpg.c \ tests/log/stub_log.c \ tests/config/stub_accounts.c \ tests/helpers.c tests/helpers.h \ @@ -98,6 +100,9 @@ main_source = src/main.c git_include = src/gitversion.h +pgp_sources = \ + src/pgp/gpg.h src/pgp/gpg.c + otr3_sources = \ src/otr/otrlib.h src/otr/otrlibv3.c src/otr/otr.h src/otr/otr.c @@ -113,6 +118,10 @@ script_sources = bootstrap.sh configure-debug install-all.sh man_sources = docs/profanity.1 +if BUILD_PGP +core_sources += $(pgp_sources) +endif + if BUILD_OTR tests_sources += $(otr_test_sources) if BUILD_OTR3 |