summaryrefslogtreecommitdiffstats
path: root/meson.build
blob: 4419e05341cefd7990e1e45abce7d3fb1bd12adf (plain)
1
2
3
4
5
6
7
8
9
project('usurpation', 'c',
	license : 'LGPL2.1',
	default_options : ['c_std=gnu11', 'buildtype=release', 'warning_level=2'])

progname = 'alg'

subdir('src')

executable(progname, sources, install : true)