mirror of
https://github.com/kakwa/uts-server
synced 2025-07-04 20:47:09 +02:00
first batch of the rst documentation
This commit is contained in:
parent
84b5d75c08
commit
fa6f7b5f17
12 changed files with 318 additions and 411 deletions
38
docs/install.rst
Normal file
38
docs/install.rst
Normal file
|
@ -0,0 +1,38 @@
|
|||
Dependencies
|
||||
============
|
||||
|
||||
Runtime dependencies
|
||||
--------------------
|
||||
|
||||
List of dependencies uts-server relies on to run:
|
||||
|
||||
* OpenSSL (https://github.com/openssl/openssl)
|
||||
* civetweb (https://github.com/civetweb/civetweb)
|
||||
|
||||
Build dependencies
|
||||
------------------
|
||||
|
||||
List of dependencies needed to build civetweb:
|
||||
|
||||
* cmake
|
||||
* either gcc or clang
|
||||
|
||||
Compilation
|
||||
===========
|
||||
|
||||
uts-server is compiled using cmake:
|
||||
|
||||
.. sourcecode:: bash
|
||||
|
||||
# If civetweb is already present on the system
|
||||
$ cmake .
|
||||
$ make
|
||||
|
||||
# If civetweb is not present
|
||||
# this will get the proper tag of civetweb from upstream and compile it
|
||||
$ cmake . -DBUNDLE_CIVETWEB=ON
|
||||
$ make
|
||||
|
||||
# Compile with debug flags
|
||||
$ cmake . -DDEBUG=ON
|
||||
$ make
|
Loading…
Add table
Add a link
Reference in a new issue