3cd9bb4f2a
Signed-off-by: Andre Renaud <andre@ignavus.net> [Arnout: reorder .mk so conditional parts come after unconditional, and use += within conditions] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
19 lines
788 B
Plaintext
19 lines
788 B
Plaintext
config BR2_PACKAGE_LIBGLFW
|
|
bool "libglfw"
|
|
depends on BR2_PACKAGE_XORG7 || BR2_PACKAGE_WAYLAND
|
|
depends on BR2_PACKAGE_HAS_LIBGL || BR2_PACKAGE_HAS_LIBGLES
|
|
select BR2_PACKAGE_XLIB_LIBXCURSOR if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXI if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXINERAMA if BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_XLIB_LIBXRANDR if BR2_PACKAGE_XORG7
|
|
help
|
|
GLFW is an Open Source, multi-platform library for creating
|
|
windows with OpenGL contexts and receiving input and events.
|
|
|
|
http://www.glfw.org
|
|
|
|
comment "libglfw depends on X.org or Wayland and an OpenGL or GLES backend"
|
|
depends on !(BR2_PACKAGE_XORG7 || BR2_PACKAGE_WAYLAND)
|
|
depends on !(BR2_PACKAGE_HAS_LIBGL || BR2_PACKAGE_HAS_LIBGLES)
|