Solaris build added

This commit is contained in:
orignal
2025-03-02 15:00:09 -05:00
parent 5f762845f0
commit a1794ccd22
2 changed files with 12 additions and 0 deletions

9
Makefile.solaris Normal file
View File

@@ -0,0 +1,9 @@
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