mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-18 13:27:56 +01:00
make: add kvdb_sqlite to build flags
This commit is contained in:
parent
8363c4075c
commit
8c4d3345e9
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user