1config BR2_PACKAGE_WAYLANDPP 2 bool "waylandpp" 3 depends on BR2_PACKAGE_HAS_LIBEGL_WAYLAND 4 depends on BR2_HOST_GCC_AT_LEAST_4_9 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 6 depends on BR2_INSTALL_LIBSTDCPP 7 depends on BR2_PACKAGE_WAYLAND 8 help 9 Wayland C++ bindings 10 11 https://github.com/NilsBrause/waylandpp 12 13comment "waylandpp needs an OpenGL-EGL/wayland backend, a toolchain w/ gcc >= 4.9, host gcc >= 4.9, C++ support" 14 depends on BR2_PACKAGE_WAYLAND 15 depends on !BR2_PACKAGE_HAS_LIBEGL_WAYLAND || \ 16 !BR2_HOST_GCC_AT_LEAST_4_9 || \ 17 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 18 !BR2_INSTALL_LIBSTDCPP 19