The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
273 B
10 lines
273 B
5 years ago
|
project('curses', 'c')
|
||
|
|
||
|
curses = dependency('curses', required: false)
|
||
|
if not curses.found()
|
||
|
error('MESON_SKIP_TEST: Curses library not found')
|
||
|
endif
|
||
|
|
||
|
exec = executable('basic', 'main.c', dependencies: curses)
|
||
|
# didn't run the test because in general graphics fail on CI
|