summary refs log tree commit diff
path: root/release/checks/wayland/surface-notify/meson.build
blob: 3080b565dd2116eac37c2fd0be8fb1cf60860020 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-License-Identifier: EUPL-1.2+
# SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is>

project('surface-notify', 'c', default_options : [ 'warning_level=2' ])

libweston = dependency('libweston-13')
wayland_server = dependency('wayland-server')

shared_library('surface-notify', 'module.c',
  name_prefix : '',
  dependencies : [ libweston, wayland_server ],
  install : true,
  install_dir : get_option('libdir') / 'weston')