mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-11 11:58:28 +01:00
9 lines
245 B
Text
9 lines
245 B
Text
|
CXX = g++
|
||
|
INCFLAGS = -I/usr/openssl/3/include
|
||
|
CXXFLAGS := -Wall -std=c++20
|
||
|
LDLIBS = -L/usr/openssl/3/lib/64 -lssl -lcrypto -lboost_program_options -lz -lpthread -lsocket
|
||
|
|
||
|
ifeq ($(USE_UPNP),yes)
|
||
|
DEFINES += -DUSE_UPNP
|
||
|
LDLIBS += -lminiupnpc
|
||
|
endif
|