Go to file
Alexander Taylor 3277c6d994 Fix order of WM_HINTS and WM_PROTOCOLS in xwm atom_map 2017-10-24 19:11:57 -04:00
backend Send output current mode when changed 2017-10-23 21:03:00 +02:00
dist/archlinux Update README et al with new links 2017-10-02 22:27:39 -04:00
examples Fixes #321, not using result of wl_container_of 2017-10-22 19:29:24 -07:00
include xwm: get rid of displayable surfaces list 2017-10-24 18:57:20 -04:00
protocol Add FreeBSD compatibility 2017-10-11 00:07:21 +03:00
render Pass backend to render 2017-10-22 10:39:23 +13:00
rootston xwm: add surface to rootston on surface commit 2017-10-24 12:00:43 -04:00
types Remove gamma_control->link from list in destroy 2017-10-24 19:11:57 -04:00
util Rename remaining refs to wlr_list 2017-10-21 22:02:36 -04:00
xcursor Add FreeBSD compatibility 2017-10-11 00:07:21 +03:00
xwayland Fix order of WM_HINTS and WM_PROTOCOLS in xwm atom_map 2017-10-24 19:11:57 -04:00
.build.yml Specify gcc explicitly in .build.yml 2017-08-09 22:59:02 -04:00
.editorconfig Add XML rules to .editorconfig 2017-10-15 22:21:05 +02:00
.gitignore add configuration file 2017-08-26 08:32:11 -04:00
.travis.yml Update ci for pixman 2017-08-09 17:06:19 +02:00
CONTRIBUTING.md Update README et al with new links 2017-10-02 22:27:39 -04:00
LICENSE Initial commit 2017-04-25 11:32:52 -04:00
README.md Add FreeBSD compatibility 2017-10-11 00:07:21 +03:00
dummy.c Fix build on systems without systemd 2017-08-13 08:21:57 -04:00
glgen.sh Fix glgen to be more POSIX corformant 2017-10-09 12:28:20 +13:00
meson.build Merge branch 'master' into feature/data-device-selection 2017-10-24 07:57:36 -04:00
meson_options.txt Make xwayland compile-time optional 2017-10-06 21:50:25 +00:00

README.md

wlroots

Pluggable, composable modules for building a Wayland compositor.

This is a WIP: status

Contributing

See CONTRIBUTING.md

Building

Install dependencies:

  • wayland
  • wayland-protocols
  • EGL
  • GLESv2
  • DRM
  • GBM
  • libinput
  • udev
  • pixman
  • systemd (optional, for logind support)
  • elogind (optional, for logind support on systems without systemd)
  • libcap (optional, for capability support)
  • asciidoc (optional, for man pages)

Run these commands:

meson build
ninja -C build

(On FreeBSD, you need to pass an extra flag to prevent a linking error: meson build -D b_lundef=false)