index — thing @ 7a2b1e0c05f690291f01dcfa0560bbd8acc01ad1

A little something I'm working on

meson.build (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
project(
  'thing',
  'c',
  default_options :
    ['c_std=c99', 'W=all']
  )
term = library('thingterm', 'term.c')
menu = library('thingmenu', 'menu.c')
executable('thing', 'main.c', link_with: [term, menu])