93811a2b8a
KMS++ is a suite of library and test tools to interact with KMS drivers in the linux kernel. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> [Thomas: - rename prompt to kms++, suggested by Yann E. Morin - fixup the thread dependency comment - remove the mention of the python wrapper in the Config.in help text, since they are not installed - fix the Config.in comment to mention the C++ and gcc >= 4.8 dependencies - use = instead of += when appropriate - use a loop to install the test programs - use a loop to install the libraries - add installation to staging as well, both the libraries and header files - add missing dependency on host-pkgconf - add hash file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
673 B
Plaintext
26 lines
673 B
Plaintext
config BR2_PACKAGE_KMSXX
|
|
bool "kms++"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm
|
|
select BR2_PACKAGE_LIBDRM
|
|
help
|
|
libkms++ is a C++11 library for kernel mode setting.
|
|
|
|
Also included are simple test tools for KMS.
|
|
|
|
https://github.com/tomba/kmsxx
|
|
|
|
if BR2_PACKAGE_KMSXX
|
|
|
|
config BR2_PACKAGE_KMSXX_INSTALL_TESTS
|
|
bool "Install test programs"
|
|
help
|
|
This option allows to install the kmsxx test programs.
|
|
|
|
endif
|
|
|
|
comment "kms++ needs a toolchain w/ threads, C++, gcc >= 4.8"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|