index — thing @ 3632f2243dc8735baee6d124e6611ed043b66cd4

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])