Added to about section.

This commit is contained in:
Arron David Nelson 2024-02-01 02:06:03 -08:00
parent a538d04c83
commit bab5b595a6

View File

@ -1,5 +1,7 @@
# About
Much like boost.io this library is a replacement of the standard C/C++ libraries. It provides most features needed when designing applications in a cross-platform manner.
Much like boost.io this library is a replacement of the standard C/C++ libraries. It provides most features needed when
designing applications in a cross-platform manner. The goal for this project is for it to be compiled and run on
anything which means embedded hardware support.
### Features
- Audio IO/Processing/Manipulation
@ -48,7 +50,8 @@ Much like boost.io this library is a replacement of the standard C/C++ libraries
1. `cmake -DCMAKE_BUILD_TYPE=Release -DLINUX_WINDOW_SYSTEM:STRING=XCB /path/to/source`
2. `cmake --build /path/to/build --config Release`
The `LINUX_WINDOW_SYSTEM` variable in the first step can be either `XCB` for the X Window System or `Wayland` for the Wayland Window System. Wayland support is currently not fully supported yet, use only `XCB`.
The `LINUX_WINDOW_SYSTEM` variable in the first step can be either `XCB` for the X Window System or `Wayland` for the
Wayland Window System. Wayland support is currently not fully supported yet, use only `XCB`.
# Simple Example
```cpp