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