/+junk/codegen

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/codegen

« back to all changes in this revision

Viewing changes to meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2022-10-19 21:06:55 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20221019210655-9iqu2dhjbpvedoma
Beep Boop, nothin yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)