blob: 022144ef15eaf29595f6481b7bf6a7c52ddc6768 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require include/gles-control.inc
def map_libs(d):
if oe.utils.conditional('USE_GLES_WAYLAND', "1", "1", "0", d) == "1":
return "wayland"
return "dummy"
MESATARGET := "${@map_libs(d)}"
include mesa-${MESATARGET}.inc
|