35 lines
649 B
Markdown
35 lines
649 B
Markdown
# vKVM TextRenderer
|
|
|
|
## Installation
|
|
|
|
Use the installation script provided in the Scripts repository
|
|
to install the full package.
|
|
|
|
Installing a single component is currently not supported.
|
|
|
|
## Target
|
|
|
|
TextRender build exports an interface target TextRender::TextRender. Link against
|
|
it will add the proper include path and all necessary capablities to the
|
|
resulting binary.
|
|
|
|
This means that if TextRender has been installed on the Project Path, it
|
|
should be enough to do.
|
|
|
|
...
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
|
|
## Example
|
|
|
|
Font font("filepath");
|
|
char bitmap[] = font.translate("hello world");
|
|
|