Update README.md
This commit is contained in:
parent
3575ee9d26
commit
f0638d2d77
1 changed files with 10 additions and 2 deletions
12
README.md
12
README.md
|
@ -1,8 +1,9 @@
|
||||||
# UDPConnection
|
# UDPConnection
|
||||||
|
|
||||||
Provides a network connection over UDP, with verification of packet support via
|
Provides a network connection over UDP, with verification of packet support via
|
||||||
libsodium (optional). Implemented in C++, but is available via a C api, which
|
libsodium (optional). Implemented in C++ (up to C++11 standard), but is
|
||||||
should facilitate creating bindings for other programming languages if needed.
|
available via a C api, which should facilitate creating bindings for other
|
||||||
|
programming languages if needed.
|
||||||
|
|
||||||
This library is still a work in progress, so api breaking changes may happen
|
This library is still a work in progress, so api breaking changes may happen
|
||||||
in the future.
|
in the future.
|
||||||
|
@ -24,3 +25,10 @@ created by invoking `doxygen Doxyfile` in the root directory of the project.
|
||||||
|
|
||||||
The program in `src/test/UDPC_NetworkTest.c` is used for testing UDPConnection
|
The program in `src/test/UDPC_NetworkTest.c` is used for testing UDPConnection
|
||||||
and is also an example of using the library in a C program.
|
and is also an example of using the library in a C program.
|
||||||
|
|
||||||
|
## Debug Builds
|
||||||
|
|
||||||
|
NetworkTest only builds when CMAKE\_BUILD\_TYPE is Debug (default).
|
||||||
|
|
||||||
|
UnitTest only builds in Debug mode and if GTest (a unit testing framework) is
|
||||||
|
available.
|
||||||
|
|
Loading…
Reference in a new issue