Forked from
Bruce Cowan / Rugby
148 commits behind the upstream repository.
-
Bruce Cowan authoredBruce Cowan authored
meson.build 585 B
gnome = import('gnome')
conf = configuration_data()
conf.set('TRY_POINTS', get_option('try_points'))
conf.set('UTRY_POINTS', get_option('utry_points'))
conf.set('KICK_POINTS', get_option('kick_points'))
config_h = configure_file(configuration: conf, output: 'config.h')
sources = files(
'main.c',
'rugby-app-window.c',
'rugby-list-store.c',
'rugby-possibility.c',
'rugby-possibility-widget.c'
)
sources += config_h
sources += resources
deps = [gio_dep, gtk_dep]
executable('rugby',
sources,
dependencies: deps,
install: true)