summaryrefslogtreecommitdiff
path: root/somebar/meson.build
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-04-04 17:44:21 +0100
committertslil <tslil@posteo.de>2026-04-04 17:47:21 +0100
commit5413fb67d5454666cd4606ac51e8f8d1ae31aa6e (patch)
treeeffd7869b631e1e1a455b65eea1a1f12263b4bba /somebar/meson.build
parent0c860a57966d4c0f4ef817b9c7f378de4623a236 (diff)
cleanup
Diffstat (limited to 'somebar/meson.build')
-rw-r--r--somebar/meson.build31
1 files changed, 0 insertions, 31 deletions
diff --git a/somebar/meson.build b/somebar/meson.build
deleted file mode 100644
index 6ad5a0f..0000000
--- a/somebar/meson.build
+++ /dev/null
@@ -1,31 +0,0 @@
-project('somebar', ['c', 'cpp'],
- version: '0.1.0',
- default_options: [
- 'cpp_std=c++17',
- 'cpp_args=-Wno-parentheses',
- ])
-
-wayland_dep = dependency('wayland-client')
-wayland_cursor_dep = dependency('wayland-cursor')
-cairo_dep = dependency('cairo')
-pango_dep = dependency('pango')
-pangocairo_dep = dependency('pangocairo')
-
-subdir('protocols')
-
-executable('somebar',
- 'src/main.cpp',
- 'src/shm_buffer.cpp',
- 'src/bar.cpp',
- wayland_sources,
- dependencies: [
- wayland_dep,
- wayland_cursor_dep,
- cairo_dep,
- pango_dep,
- pangocairo_dep,
- ],
- install: true,
- cpp_args: '-DSOMEBAR_VERSION="@0@"'.format(meson.project_version()))
-
-install_man('somebar.1')