You've already forked cpp-httplib
Added client.
This commit is contained in:
@ -9,10 +9,13 @@ CC = g++
|
||||
CFLAGS = -std=c++11 -g
|
||||
endif
|
||||
|
||||
all: sample hello
|
||||
all: server client hello
|
||||
|
||||
sample : sample.cc ../httplib.h
|
||||
$(CC) -o sample $(CFLAGS) -I.. sample.cc
|
||||
server : server.cc ../httplib.h
|
||||
$(CC) -o server $(CFLAGS) -I.. server.cc
|
||||
|
||||
client : client.cc ../httplib.h
|
||||
$(CC) -o client $(CFLAGS) -I.. client.cc
|
||||
|
||||
hello : hello.cc ../httplib.h
|
||||
$(CC) -o hello $(CFLAGS) -I.. hello.cc
|
||||
|
Reference in New Issue
Block a user