summaryrefslogtreecommitdiffstats
path: root/ffi
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2018-09-10 10:41:10 +0200
committerNeal H. Walfield <neal@pep.foundation>2018-09-10 11:16:50 +0200
commit7818f0b843153ff8d681c78a92cde2bb331934fc (patch)
treefdfa2a6b0d5b533f03ade7b8dec8ea40f0461ba0 /ffi
parentafea387c5112e879fed8c180442e7f6ff22cf464 (diff)
ffi: Use -Werror when compiling examples.
Diffstat (limited to 'ffi')
-rw-r--r--ffi/examples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi/examples/Makefile b/ffi/examples/Makefile
index 5920b9d3..d27526ad 100644
--- a/ffi/examples/Makefile
+++ b/ffi/examples/Makefile
@@ -6,7 +6,7 @@ CARGO_TARGET_DIR ?= $(shell pwd)/../../target
CARGO_TARGET_DIR := $(abspath $(CARGO_TARGET_DIR))
TARGETS = example keyserver configure reader parser encrypt-for
-CFLAGS = -I../include -O0 -g -Wall
+CFLAGS = -I../include -O0 -g -Wall -Werror
LDFLAGS = -L$(CARGO_TARGET_DIR)/debug -lsequoia_ffi
all: $(TARGETS)