index — thing @ 2c3a0ee83d01236273cc62964cd8f1b3788050a5

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