blob: 5202cf6e40718aa53c5890b76412240d01da3982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@WaylandCustomProtocols({
@WaylandCustomProtocol(
path = "core/wayland.xml",
generateServer = false
),
@WaylandCustomProtocol(
path = "wlr/unstable/wlr-layer-shell-unstable-v1.xml",
generateServer = false
)
})
@WaylandProtocols(
pkgConfig = "",
path = "extra",
generateServer = false,
withUnstable = false
)
package org.freedesktop.wayland;
import org.freedesktop.wayland.generator.api.WaylandCustomProtocol;
import org.freedesktop.wayland.generator.api.WaylandCustomProtocols;
import org.freedesktop.wayland.generator.api.WaylandProtocols;
|