bzr branch
http://gegoxaren.bato24.eu/bzr/%2Bjunk/codegen
1
by Gustav Hartvigsson
Beep Boop, nothin yet. |
1 |
project('CodeGen', 'c', |
2 |
version : '0.1.0', |
|
3 |
default_options : ['c_std=c2x', |
|
4 |
'warning_level=3'],) |
|
5 |
||
6 |
add_project_arguments (['-fanalyzer'], language : 'c') |
|
7 |
||
8 |
conf = configuration_data() |
|
9 |
conf.set ('PROJECT_NAME', meson.project_name ()) |
|
10 |
conf.set ('PROJECT_VERSION', meson.project_version ()) |
|
11 |
||
12 |
subdir ('src') |
|
13 |
||
14 |
exe = executable('codegen', source_files, hfile, include_directories : conf_inc) |
|
15 |
||
16 |
test('basic', exe) |