mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-07-10 12:13:54 +02:00
Merge 8a8ea9d5d4
into 59954c1d7c
This commit is contained in:
commit
a77d51ae30
10 changed files with 496 additions and 64 deletions
6
Makefile
6
Makefile
|
@ -18,6 +18,7 @@ USE_AVX := yes
|
|||
USE_STATIC := no
|
||||
USE_MESHNET := no
|
||||
USE_UPNP := no
|
||||
USE_LMDB := yes
|
||||
|
||||
ifeq ($(WEBSOCKETS),1)
|
||||
NEEDED_CXXFLAGS += -DWITH_EVENTS
|
||||
|
@ -47,6 +48,11 @@ ifeq ($(USE_MESHNET),yes)
|
|||
NEEDED_CXXFLAGS += -DMESHNET
|
||||
endif
|
||||
|
||||
ifeq ($(USE_LMDB),yes)
|
||||
NEEDED_CXXFLAGS += -DLMDB
|
||||
LDLIBS += -llmdb
|
||||
endif
|
||||
|
||||
NEEDED_CXXFLAGS += -I$(LIB_SRC_DIR) -I$(LIB_CLIENT_SRC_DIR)
|
||||
|
||||
all: mk_obj_dir $(ARLIB) $(ARLIB_CLIENT) $(I2PD)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue