make: add kvdb_sqlite to build flags

This commit is contained in:
Chris Geihsler
2022-12-14 11:47:29 +02:00
committed by Elle Mouton
parent 8363c4075c
commit 8c4d3345e9
2 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@ windows-386 \
windows-amd64 \
windows-arm
RELEASE_TAGS = autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc neutrinorpc monitoring peersrpc kvdb_postgres kvdb_etcd
RELEASE_TAGS = autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc neutrinorpc monitoring peersrpc kvdb_postgres kvdb_etcd kvdb_sqlite
WASM_RELEASE_TAGS = autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc neutrinorpc monitoring peersrpc

View File

@ -68,6 +68,10 @@ ifeq ($(dbbackend),postgres)
DEV_TAGS += kvdb_postgres
endif
ifeq ($(dbbackend),sqlite)
DEV_TAGS += kvdb_sqlite
endif
ifneq ($(tags),)
DEV_TAGS += ${tags}
endif