blob: 3d101a43ebd6f054169e1854885bbc07cd7a46db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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')
add_project_arguments('-fplan9-extensions', language : 'c')
subdir('src')
executable(progname, sources, install : true)
|