You've already forked cpp-httplib
Renamed project name to 'cpp-httplib'.
This commit is contained in:
@ -11,8 +11,8 @@ endif
|
||||
|
||||
all: sample hello
|
||||
|
||||
sample : sample.cc ../httpsvrkit.h
|
||||
sample : sample.cc ../httplib.h
|
||||
$(CC) -o sample $(CFLAGS) -I.. sample.cc
|
||||
|
||||
hello : hello.cc ../httpsvrkit.h
|
||||
hello : hello.cc ../httplib.h
|
||||
$(CC) -o hello $(CFLAGS) -I.. hello.cc
|
||||
|
@ -5,7 +5,7 @@
|
||||
// The Boost Software License 1.0
|
||||
//
|
||||
|
||||
#include <httpsvrkit.h>
|
||||
#include <httplib.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
|
@ -5,11 +5,11 @@
|
||||
// The Boost Software License 1.0
|
||||
//
|
||||
|
||||
#include <httpsvrkit.h>
|
||||
#include <httplib.h>
|
||||
#include <cstdio>
|
||||
#include <signal.h>
|
||||
|
||||
using namespace httpsvrkit;
|
||||
using namespace httplib;
|
||||
|
||||
template<typename Fn> void signal(int sig, Fn fn)
|
||||
{
|
||||
|
Reference in New Issue
Block a user