]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/external-libkmsxx.git/blobdiff - README.md
Update README.md
[android/external-libkmsxx.git] / README.md
index 1d20a52271f4d98707a36de7395103b179ce558f..a3e1077b84d1dea36df6f88b71e04acc6c9d1336 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,24 +2,32 @@
 
 libkms++ is a C++11 library for kernel mode setting.
 
-Also included are simple test tools for KMS and python wrapper for libkms++.
+Also included are some simple utilities for KMS and python bindings for libkms++.
 
-## Test tools
+## Utilities
 
+- testpat - set modes and planes and show test pattern on crtcs/planes
 - kmsprint - print information about DRM objects
-- testpat - set modes and show test pattern on crtcs/planes
 - kmsview - view raw images
 - db - simple double-buffering test
 - kmscube - rotating 3D cube on crtcs/planes
+- kmscapture - show captured frames from a camera on screen
 
 ## Dependencies:
 
 - libdrm
-- SWIG 3.x (for python bindings)
 - Python 3.x (for python bindings)
 
 ## Build instructions:
 
+To build the Python bindings you need to set up the git-submodule for pybind11:
+
+```
+git submodule update --init
+```
+
+And to compile:
+
 ```
 $ mkdir build
 $ cd build
@@ -29,25 +37,15 @@ $ make -j4
 
 ## Cross compiling instructions:
 
-Directions for cross compiling depend on your environment. These are for mine (buildroot):
+Directions for cross compiling depend on your environment.
 
-As above, but specify `-DCMAKE_TOOLCHAIN_FILE=<path>/your-toolchain.cmake` for cmake, where your-toolchain.cmake is something similar to:
+These are for mine with buildroot:
 
 ```
-SET(CMAKE_SYSTEM_NAME Linux)
-
-SET(BROOT "<buildroot>/output/")
-
-# specify the cross compiler
-SET(CMAKE_C_COMPILER   ${BROOT}/host/usr/bin/arm-buildroot-linux-gnueabihf-gcc)
-SET(CMAKE_CXX_COMPILER ${BROOT}/host/usr/bin/arm-buildroot-linux-gnueabihf-g++)
-
-# where is the target environment
-SET(CMAKE_FIND_ROOT_PATH ${BROOT}/target ${BROOT}/host)
-
-SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY)
-SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
-SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
+$ mkdir build
+$ cd build
+$ cmake -DCMAKE_TOOLCHAIN_FILE=<buildrootpath>/output/host/usr/share/buildroot/toolchainfile.cmake ..
+$ make -j4
 ```
 
 ## Build options
@@ -59,7 +57,6 @@ Option name           | Values        | Default  | Notes
 CMAKE_BUILD_TYPE      | Release/Debug | Release  |
 LIBKMS_ENABLE_PYTHON  | ON/OFF        | ON       |
 LIBKMS_ENABLE_KMSCUBE | ON/OFF        | OFF      |
-LIBKMS_ENABLE_LTO     | ON/OFF        | OFF      | Link Time Optimization
 
 ## Env variables