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

progname = 'alg'

add_project_arguments('-D', '_GNU_SOURCE', language : 'c')

subdir('src')

executable(progname, sources, install : true)