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
No known key found for this signature in database
GPG Key ID: D7D916376026F177
2 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@ windows-386 \
windows-amd64 \ windows-amd64 \
windows-arm 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 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 DEV_TAGS += kvdb_postgres
endif endif
ifeq ($(dbbackend),sqlite)
DEV_TAGS += kvdb_sqlite
endif
ifneq ($(tags),) ifneq ($(tags),)
DEV_TAGS += ${tags} DEV_TAGS += ${tags}
endif endif