Added OpenSSL support

This commit is contained in:
2026-07-23 16:25:59 +03:00
parent 395ac4781a
commit 923e05879d
2 changed files with 5 additions and 5 deletions

View File

@@ -3,6 +3,6 @@ srcs += helpers.cpp
srcs += TRMNL.cpp
all:
g++ ${srcs} -o server
g++ ${srcs} -o server -lssl -lcrypto
.PHONY: all