aboutsummaryrefslogtreecommitdiff
path: root/meson.build
blob: 9a1e6804b00f2ab0b0265b814ef7b9418dc39e8c (plain)
1
2
3
4
5
6
project('stargaze', 'c', license: 'GPL-3', version: '0.1')

add_project_arguments('-DDATADIR="@0@/share"'.format(get_option('prefix')), language: 'c')
notcurses_dep = dependency('notcurses-core')
executable('stargaze', 'main.c', dependencies: notcurses_dep, install: true)
install_subdir('stargaze', install_dir: 'share')