Go to file
Johannes Theiner 5984d9f9ed Merge remote-tracking branch 'origin/dev' into dev
# Conflicts:
#	README.md
2019-10-23 17:13:26 +02:00
src + public header fully documented. 2019-10-23 17:12:04 +02:00
test + Catch2 as Unit Test Framework 2019-10-16 15:11:16 +02:00
.gitignore + Catch2 as Unit Test Framework 2019-10-16 15:11:16 +02:00
CHANGELOG.md + public header fully documented. 2019-10-23 17:12:04 +02:00
CMakeLists.txt + clang_tidy 2019-10-21 15:19:26 +00:00
LICENSE + Catch2 as Unit Test Framework 2019-10-16 15:11:16 +02:00
README.md Merge remote-tracking branch 'origin/dev' into dev 2019-10-23 17:13:26 +02:00

README.md

vKVM Library

#Background

THis Library was created to make it easier for developers to understand the overall project framework, and to make the code of each department uniform and standardized. It can provide names for many variables and methods that people can easily call and implement. It can provided font changes, event handling, pixel color, button control, ect.

Installation

Use the installation script provided in the Scripts repository to install the full package.

Installing a single component is currently not supported.

Usage

Include this library with

set(LIB_PATH "${CMAKE_SOURCE_DIR}/../library")

include_directories(${LIB_PATH}/include)
add_executable(your_client ${SOURCES} ${HEADERS})

target_link_libraries(your_client ${LIB_PATH}/lib/liblibrary.a)

in your CMakeLists.

More documentation coming soon.