sway/sway/meson.build

178 lines
4.0 KiB
Meson
Raw Normal View History

2017-11-30 11:25:13 +00:00
sway_sources = files(
2017-11-30 08:39:27 +00:00
'main.c',
'server.c',
'commands.c',
2018-04-05 01:32:31 +00:00
'config.c',
'criteria.c',
2018-04-06 15:49:27 +00:00
'debug-tree.c',
2018-04-05 01:32:31 +00:00
'ipc-json.c',
'ipc-server.c',
'security.c',
'desktop/desktop.c',
2018-06-27 09:16:49 +00:00
'desktop/idle_inhibit_v1.c',
2018-04-05 01:32:31 +00:00
'desktop/layer_shell.c',
2018-05-13 15:38:56 +00:00
'desktop/output.c',
2018-07-07 09:30:52 +00:00
'desktop/render.c',
2018-06-03 06:35:06 +00:00
'desktop/transaction.c',
2018-04-05 01:32:31 +00:00
'desktop/xdg_shell_v6.c',
2018-05-13 15:38:56 +00:00
'desktop/xdg_shell.c',
2018-04-05 01:32:31 +00:00
'desktop/xwayland.c',
2017-12-07 12:31:49 +00:00
'input/input-manager.c',
2017-12-07 14:58:32 +00:00
'input/seat.c',
2017-12-08 12:22:26 +00:00
'input/cursor.c',
2017-12-10 18:59:04 +00:00
'input/keyboard.c',
2018-04-05 01:32:31 +00:00
'config/bar.c',
'config/output.c',
'config/seat.c',
'config/input.c',
'commands/assign.c',
2018-03-29 21:20:03 +00:00
'commands/bar.c',
2017-12-27 15:08:18 +00:00
'commands/bind.c',
'commands/border.c',
'commands/client.c',
'commands/default_border.c',
'commands/default_floating_border.c',
2018-03-30 14:43:55 +00:00
'commands/default_orientation.c',
2017-11-30 08:39:27 +00:00
'commands/exit.c',
2017-12-04 21:43:49 +00:00
'commands/exec.c',
'commands/exec_always.c',
2018-05-04 12:24:25 +00:00
'commands/floating.c',
'commands/floating_minmax_size.c',
'commands/floating_modifier.c',
2018-02-14 21:47:23 +00:00
'commands/focus.c',
'commands/focus_follows_mouse.c',
2018-05-28 03:20:21 +00:00
'commands/focus_wrapping.c',
2018-05-02 13:07:52 +00:00
'commands/font.c',
'commands/for_window.c',
'commands/force_display_urgency_hint.c',
'commands/force_focus_wrapping.c',
2018-04-16 10:36:40 +00:00
'commands/fullscreen.c',
2018-06-09 13:34:56 +00:00
'commands/gaps.c',
2018-05-11 22:44:56 +00:00
'commands/hide_edge_borders.c',
2018-01-20 19:10:11 +00:00
'commands/kill.c',
2018-05-14 12:47:10 +00:00
'commands/mark.c',
2018-04-03 04:47:45 +00:00
'commands/opacity.c',
2017-12-05 17:47:57 +00:00
'commands/include.c',
2017-12-11 09:17:14 +00:00
'commands/input.c',
2018-02-22 23:03:46 +00:00
'commands/layout.c',
2018-03-30 02:10:33 +00:00
'commands/mode.c',
2018-04-05 01:32:31 +00:00
'commands/mouse_warping.c',
'commands/move.c',
2018-07-16 12:18:12 +00:00
'commands/no_focus.c',
2018-04-05 01:32:31 +00:00
'commands/output.c',
'commands/reload.c',
'commands/rename.c',
2018-04-05 01:32:31 +00:00
'commands/resize.c',
2017-12-14 16:11:56 +00:00
'commands/seat.c',
'commands/seat/attach.c',
'commands/seat/cursor.c',
2017-12-17 15:39:22 +00:00
'commands/seat/fallback.c',
2017-12-29 14:31:04 +00:00
'commands/set.c',
2018-05-15 03:14:18 +00:00
'commands/show_marks.c',
2018-06-09 13:34:56 +00:00
'commands/smart_gaps.c',
2018-04-05 01:32:31 +00:00
'commands/split.c',
2018-05-24 12:30:44 +00:00
'commands/sticky.c',
2018-03-29 21:49:44 +00:00
'commands/swaybg_command.c',
2018-05-26 15:02:21 +00:00
'commands/swap.c',
'commands/title_format.c',
2018-05-14 12:47:10 +00:00
'commands/unmark.c',
'commands/urgent.c',
2018-04-05 01:32:31 +00:00
'commands/workspace.c',
'commands/workspace_layout.c',
'commands/ws_auto_back_and_forth.c',
2018-04-05 01:32:31 +00:00
2018-03-29 21:20:03 +00:00
'commands/bar/activate_button.c',
'commands/bar/binding_mode_indicator.c',
'commands/bar/bindsym.c',
'commands/bar/colors.c',
'commands/bar/context_button.c',
'commands/bar/font.c',
'commands/bar/height.c',
'commands/bar/hidden_state.c',
'commands/bar/icon_theme.c',
'commands/bar/id.c',
'commands/bar/mode.c',
'commands/bar/modifier.c',
'commands/bar/output.c',
'commands/bar/pango_markup.c',
'commands/bar/position.c',
'commands/bar/secondary_button.c',
'commands/bar/separator_symbol.c',
'commands/bar/status_command.c',
'commands/bar/strip_workspace_numbers.c',
'commands/bar/swaybar_command.c',
'commands/bar/tray_output.c',
'commands/bar/tray_padding.c',
'commands/bar/workspace_buttons.c',
'commands/bar/wrap_scroll.c',
2018-04-05 01:32:31 +00:00
2017-12-11 09:17:14 +00:00
'commands/input/accel_profile.c',
'commands/input/click_method.c',
'commands/input/drag_lock.c',
'commands/input/dwt.c',
'commands/input/events.c',
'commands/input/left_handed.c',
2018-04-24 18:39:29 +00:00
'commands/input/map_from_region.c',
'commands/input/map_to_output.c',
2017-12-11 09:17:14 +00:00
'commands/input/middle_emulation.c',
'commands/input/natural_scroll.c',
'commands/input/pointer_accel.c',
'commands/input/repeat_delay.c',
'commands/input/repeat_rate.c',
'commands/input/scroll_button.c',
2017-12-11 09:17:14 +00:00
'commands/input/scroll_method.c',
'commands/input/tap.c',
'commands/input/tap_button_map.c',
2017-12-15 10:22:51 +00:00
'commands/input/xkb_layout.c',
'commands/input/xkb_model.c',
'commands/input/xkb_options.c',
'commands/input/xkb_rules.c',
'commands/input/xkb_variant.c',
2018-04-05 01:32:31 +00:00
'commands/output/background.c',
'commands/output/disable.c',
'commands/output/dpms.c',
'commands/output/enable.c',
'commands/output/mode.c',
'commands/output/position.c',
'commands/output/scale.c',
'commands/output/transform.c',
'tree/arrange.c',
2017-11-30 08:39:27 +00:00
'tree/container.c',
'tree/layout.c',
2018-01-21 14:09:53 +00:00
'tree/view.c',
2017-11-30 08:39:27 +00:00
'tree/workspace.c',
2018-04-04 00:00:09 +00:00
'tree/output.c',
2017-11-30 08:39:27 +00:00
)
sway_deps = [
2018-04-06 15:49:27 +00:00
cairo,
gdk_pixbuf,
2018-03-28 19:47:22 +00:00
jsonc,
libcap,
libinput,
math,
2018-04-06 15:49:27 +00:00
pango,
2018-01-20 21:21:45 +00:00
pcre,
2017-11-30 08:39:27 +00:00
pixman,
2018-03-28 19:47:22 +00:00
server_protos,
2017-11-30 08:39:27 +00:00
wayland_server,
wlroots,
2018-06-18 21:49:28 +00:00
xcb,
2017-12-10 18:59:04 +00:00
xkbcommon,
2017-11-30 08:39:27 +00:00
]
executable(
'sway',
sway_sources,
include_directories: [sway_inc],
2017-11-30 11:25:13 +00:00
dependencies: sway_deps,
2017-11-30 13:31:13 +00:00
link_with: [lib_sway_common],
install: true
2017-11-30 08:39:27 +00:00
)