aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov@twistea.su>2025-02-08 22:13:52 +0300
committerjustanothercatgirl <sotov@twistea.su>2025-02-08 22:13:52 +0300
commitcab382db088d9f240253466a1c5a26c62f3967c8 (patch)
treec5502f1b49211dccd3e29e163e708708495a6407 /README.md
parent3eeee14d5d5c93ae3d156aabae5a96d1c09f185a (diff)
Implemented multiplexing in main thread (TCP loop). Removed CMake files.HEADmaster
TODO: Implement multiplexing in worker threads (UDP loops), implement channel_pool interface.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3239c69..8cb3989 100644
--- a/README.md
+++ b/README.md
@@ -13,9 +13,9 @@ Can be found in `doc/`. For now, only protocols are somewhat documented
along with all object files. If you want to customize your build destination, run
`make BLDDIR=mybuild` or customize the variable inside the makefile directly
-To build in debug mode, `make DEBUG=On`. Note that while in development,
+To build in debug mode, `make DEBUG=1`. Note that while in development,
`DEBUG` is already defined in makefile, so for now if you want a build without
-debug information, please remove `DEBUG = On` line from the Makefile
+debug information, please remove `DEBUG = 1` from makefile or run `make DEBUG=0`
Note: I have CMakeLists.txt for now, but they are not maintained and I will
remove them in next few commits