forked from eantcal/thttpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
executable file
·36 lines (25 loc) · 1.28 KB
/
README
File metadata and controls
executable file
·36 lines (25 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
-------------------------------------------------------------------------------
This file is part of thttpd (TinyHttpServer)
(c) Antonino Calderone (antonino.calderone@gmail.com)
All rights reserved.
Licensed under the MIT License.
See COPYING file in the project root for full license information.
-------------------------------------------------------------------------------
TinyHttpServer is a lightweight web server implemented in C++11
implemented for educational purposes.
You can build it either using Visual Studio for Windows or any C++ compiler
such as g++, clang, etc. which supports C++11
-------------------------------------------------------------------------------
* Project files
tiny_http_server.vcxproj
This is the main project file for VC++ projects generated using an Application
Wizard. It contains information about the version of Visual C++ that generated
the file, and information about the platforms, configurations,
and project features selected with the Application Wizard.
CMakeLists.txt
This is a cmakefile
-------------------------------------------------------------------------------
* How build TinyHttpServer using cmake
Create build directory and run cmake using a command line similar to the
following one:
mkdir build && cd build && cmake ..