/+junk/libbreezy

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/libbreezy
1 by Gustav Hartvigsson
the start of this dumb experiment
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