/+junk/libbreezy

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

« back to all changes in this revision

Viewing changes to meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-13 15:54:51 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210113155451-b8bj2e5saxiysvqc
the start of this dumb experiment

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project('libbreezy', 'c', 
 
2
          version: '0.1.0',
 
3
    meson_version: '>= 0.50.0',
 
4
  default_options: [ 'warning_level=2',
 
5
                     'c_std=gnu11',
 
6
                   ],
 
7
)
 
8
 
 
9
 
 
10
config_h = configuration_data()
 
11
config_h.set_quoted('PACKAGE_VERSION', meson.project_version())
 
12
configure_file(
 
13
  output: 'libbreezy-config.h',
 
14
  configuration: config_h,
 
15
)
 
16
add_project_arguments([
 
17
  '-I' + meson.build_root(),
 
18
], language: 'c')
 
19
 
 
20
subdir('src')
 
21