From a3da8334e4a39bd9e02257a52cc0520466f3cac1 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 13 Jan 2020 19:26:05 +0900 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 76d5552..89eff46 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,21 @@ created by invoking `doxygen Doxyfile` in the root directory of the project. ## Compiling +### Release builds + mkdir buildRelease cd buildRelease cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=True .. make make DESTDIR=install_destination install +### Debug builds + + mkdir buildDebug + cd buildDebug + cmake -DCMAKE_BUILD_TYPE=Debug .. + make + ## Usage The program in `src/test/UDPC_NetworkTest.c` is used for testing UDPConnection -- 2.49.0