Text-Renderer/README.md

33 lines
561 B
Markdown
Raw Normal View History

# 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.
2019-10-23 12:22:45 +02:00
## Target
2019-10-24 12:18:56 +02:00
TextRender build exports an interface target TextRender::TextRender.
2019-10-23 12:22:45 +02:00
2019-10-24 12:14:49 +02:00
This means that if TextRender has been installed on the Project Path, it
should be enough to do.
2019-10-23 12:22:45 +02:00
2019-10-24 12:14:49 +02:00
...
## Usage
mkdir build
cd build
cmake ..
make
## Example
2019-10-24 12:16:54 +02:00
Font font("filepath");
2019-10-24 12:20:28 +02:00
char bitmap[] = font.translate("hello world"); (not work now)
2019-10-24 12:16:54 +02:00