Remove no longer needed dependencies

This commit is contained in:
Jente Hidskes 2021-12-17 22:05:19 +01:00
parent 7fe306a79a
commit dfba2d8f9d
3 changed files with 0 additions and 14 deletions

View file

@ -38,9 +38,7 @@ endif
wlroots = dependency('wlroots', version: '>= 0.15.0', fallback: ['wlroots', 'wlroots'])
wayland_protos = dependency('wayland-protocols', version: '>=1.14')
wayland_server = dependency('wayland-server')
pixman = dependency('pixman-1')
xkbcommon = dependency('xkbcommon')
math = cc.find_library('m')
wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir')
wayland_scanner = find_program('wayland-scanner')
@ -135,7 +133,6 @@ cage_headers = [
configuration: conf_data),
'idle_inhibit_v1.h',
'output.h',
'render.h',
'seat.h',
'server.h',
'util.h',
@ -156,8 +153,6 @@ executable(
wayland_server,
wlroots,
xkbcommon,
pixman,
math,
],
install: true,
)

View file

@ -34,7 +34,6 @@
#include <wlr/util/region.h>
#include "output.h"
#include "render.h"
#include "seat.h"
#include "server.h"
#include "util.h"

View file

@ -1,8 +0,0 @@
#ifndef CG_RENDER_H
#define CG_RENDER_H
#include "output.h"
void output_render(struct cg_output *output, pixman_region32_t *damage);
#endif