wofi/meson.build

71 lines
1.6 KiB
Meson
Raw Normal View History

project('wofi', 'c', version : 'hg', default_options : ['buildtype=release', 'warning_level=2'])
2019-12-20 21:29:11 -05:00
cc = meson.get_compiler('c')
pkgcfg = import('pkgconfig')
2019-12-20 21:29:11 -05:00
inc = include_directories('inc')
gtk = dependency('gtk+-3.0')
wayland = dependency('wayland-client')
dl = cc.find_library('dl')
hg = find_program('hg', native : true, required : false)
version = meson.project_version()
if hg.found()
version = run_command(hg, 'identify').stdout().strip()
endif
add_project_arguments('-D_GNU_SOURCE', '-DVERSION="' + version + '"', language : 'c')
2019-12-20 21:29:11 -05:00
add_project_link_arguments('-rdynamic', language : 'c')
sources = ['src/config.c',
'src/main.c',
'src/map.c',
'src/property_box.c',
'src/utils.c',
'src/wofi.c',
'proto/wlr-layer-shell-unstable-v1-protocol.c',
'proto/xdg-output-unstable-v1-protocol.c',
'proto/xdg-shell-protocol.c']
2020-03-09 02:33:15 -04:00
deps = [gtk, wayland, dl]
if get_option('enable_run')
2020-02-29 01:04:49 -05:00
sources += 'modes/run.c'
endif
if get_option('enable_drun')
2020-02-29 01:04:49 -05:00
sources += 'modes/drun.c'
deps += dependency('gio-unix-2.0')
endif
if get_option('enable_dmenu')
2020-02-29 01:04:49 -05:00
sources += 'modes/dmenu.c'
endif
install_man('man/wofi.1',
'man/wofi.3',
'man/wofi.5',
'man/wofi.7',
'man/wofi-api.3',
'man/wofi-config.3',
'man/wofi-keys.7',
'man/wofi-map.3',
'man/wofi-utils.3')
subdir = 'wofi-1'
install_headers('inc/config.h',
'inc/map.h',
'inc/utils.h',
'inc/wofi_api.h',
subdir : subdir)
pkgcfg.generate(name : meson.project_name(),
description : 'Wofi API for developing modes',
requires : wayland,
subdirs : subdir)
2020-03-05 14:37:51 -05:00
executable(meson.project_name(), sources, include_directories : inc, dependencies : deps, install : true)