add libcurl basic example

This commit is contained in:
talksik
2025-07-26 18:30:12 -07:00
parent 3bb287fcd5
commit 1d0cb5bb93
3 changed files with 44 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ CC = gcc
CFLAGS = -Wall -g
TARGET = audio_capture
SRC = audio_capture.c
LIBS = -lavdevice -lavformat -lavcodec -lavutil -lasound
LIBS = -lavdevice -lavformat -lavcodec -lavutil -lasound -lcurl
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $(TARGET) $(SRC) $(LIBS)