Request module

This commit is contained in:
2025-10-06 11:57:49 +11:00
parent e3b24b585b
commit faebaf7d3f
8 changed files with 118 additions and 3 deletions

View File

@@ -27,8 +27,9 @@ TARGET = kyn
all: $(TARGET)
# Link the object files to create the executable
# At this point, we do -lcurl to link curl for the request lib
$(TARGET): $(OBJS)
$(CXX) $(CXXFLAGS) -o $(TARGET) $(OBJS)
$(CXX) $(CXXFLAGS) -lcurl -o $(TARGET) $(OBJS)
# Compile .cpp files to .o files in the build directory
$(BUILD_DIR)/%.o: %.cpp