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