aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2022-02-05 02:32:16 -0500
committerPaul Duncan <pabs@pablotron.org>2022-02-05 02:32:16 -0500
commit9d7f55d228ce20f0ba0642616abdd77b2235b28c (patch)
treec9fac11e405011207f1bcecf63e6398628317f90
parent35fd1fa3eeb9def69d00470192873297f8c845bc (diff)
downloadcvez-9d7f55d228ce20f0ba0642616abdd77b2235b28c.tar.bz2
cvez-9d7f55d228ce20f0ba0642616abdd77b2235b28c.zip
Makefile: add sqlite_json to build tags
-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: