From 9d7f55d228ce20f0ba0642616abdd77b2235b28c Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 5 Feb 2022 02:32:16 -0500 Subject: Makefile: add sqlite_json to build tags --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ab8c41f..ffb4a4d 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ # build binary all: - go build -tags='sqlite_fts5' -ldflags='-s -w' + go build -tags='sqlite_fts5 sqlite_json' -ldflags='-s -w' # run all tests test: - go test -tags='sqlite_fts5' -cover ./... + go test -tags='sqlite_fts5 sqlite_json' -cover ./... # run all tests, print result to stdout as json testjson: -- cgit v1.2.3