fix c/nghttp2, cpp/boost-beast, cpp/cpp-httplib to use actual libraries, rename libh2o to libsoup

This commit is contained in:
Russell Ballestrini 2025-10-14 14:56:26 -04:00
parent 9e3eccb1b9
commit 47ccc09992
13 changed files with 849 additions and 1246 deletions

View file

@ -1,13 +1,13 @@
CXX = g++
CXXFLAGS = -std=c++11 -Wall -Wextra -O2
LDFLAGS = -lcurl
CXXFLAGS = -std=c++17 -Wall -Wextra -O2 -DCPPHTTPLIB_OPENSSL_SUPPORT
LDFLAGS = -lssl -lcrypto -lpthread
TARGET = uncloseai
SRC = uncloseai.cpp
all: $(TARGET)
$(TARGET): $(SRC)
$(TARGET): $(SRC) httplib.h
$(CXX) $(CXXFLAGS) -o $(TARGET) $(SRC) $(LDFLAGS)
clean: