From ec8de123f4849d8e533621630486abfed9f11a97 Mon Sep 17 00:00:00 2001 From: Erik Reider <35975961+ErikReider@users.noreply.github.com> Date: Tue, 7 May 2024 19:32:08 +0200 Subject: [PATCH] Removed unneeded deps --- meson.build | 44 -------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/meson.build b/meson.build index 0f105e9..82b488c 100644 --- a/meson.build +++ b/meson.build @@ -85,13 +85,6 @@ else ) endif -wayland_project_options = ['tests=false', 'documentation=false'] -wayland_server = dependency('wayland-server', - version: '>=1.22', - fallback: 'wayland', - default_options: wayland_project_options, -) - wlroots_options = [ 'examples=false' ] wlroots_version = ['>=0.17.0', '<0.18.0'] wlroots = dependency('wlroots', @@ -108,46 +101,9 @@ if not wlroots.found() wlroots = wlroots_proj.get_variable('wlroots') endif - -drm = dependency('libdrm', - version: '>=2.4.114', - fallback: 'libdrm', - default_options: [ - 'intel=disabled', - 'radeon=disabled', - 'amdgpu=disabled', - 'nouveau=disabled', - 'vmwgfx=disabled', - 'omap=disabled', - 'exynos=disabled', - 'freedreno=disabled', - 'tegra=disabled', - 'vc4=disabled', - 'etnaviv=disabled', - 'cairo-tests=disabled', - 'man-pages=disabled', - 'valgrind=disabled', - 'tests=false', - ], -) -xkbcommon = dependency('xkbcommon') -pixman = dependency('pixman-1', - version: '>=0.42.0', - fallback: 'pixman', - default_options: ['werror=false'], -) -math = cc.find_library('m') -rt = cc.find_library('rt') - wlr_files = [] wlr_deps = [ wlroots, - wayland_server, - drm, - xkbcommon, - pixman, - math, - rt, ] subdir('protocol')