aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files 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: