Go to file
my 4ce389d141 readme v0.0 2019-10-23 12:22:45 +02:00
main + fillValue in Font 2019-10-23 11:42:32 +02:00
res added font Bitmap 2019-10-15 16:15:48 +02:00
src + fillValue in Font 2019-10-23 11:42:32 +02:00
test + Unit test framework 2019-10-16 15:44:13 +02:00
.gitignore now the gitignore has content 2019-10-16 16:18:13 +02:00
CHANGELOG.md + Unit test framework 2019-10-16 15:44:13 +02:00
CMakeLists.txt + clang_tidy 2019-10-21 15:22:28 +00:00
LICENSE wrong filename for license 2019-10-16 16:46:08 +02:00
README.md readme v0.0 2019-10-23 12:22:45 +02:00

README.md

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

  1. TextRenderer translate the string from Terminal to a bitmap array. the bitmap will output in the terminal and store in shared memory.

How to use the program

  1. You must install catch2 in your computer. the catch2 website is https://github.com/catchorg/Catch2

    If you cannot install Catch2 from a package manager (e.g. Ubuntu 16.04 provides catch only in version 1.2.0) you might want to install it from the repository instead. Assuming you have enough rights, you can just install it to the default location, like so:

    $ git clone https://github.com/catchorg/Catch2.git
    $ cd Catch2
    $ cmake -Bbuild -H. -DBUILD_TESTING=OFF
    $ sudo cmake --build build/ --target install
    
    
  2. Debug