~mmach/netext73/lz4

« back to all changes in this revision

Viewing changes to contrib/meson/meson.build

  • Committer: mmach
  • Date: 2022-11-09 18:52:10 UTC
  • Revision ID: netbit73@gmail.com-20221109185210-w358idlhh0phq688
1.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
# The intention is that it can be easily moved to the root of the project
12
12
# (together with meson_options.txt) and packaged for wrapdb.
13
13
 
14
 
project('lz4', ['c'],
15
 
  license: ['BSD', 'GPLv2'],
16
 
  default_options : ['c_std=c99',
17
 
    'buildtype=release'],
 
14
project(
 
15
  'lz4',
 
16
  ['c'],
 
17
  license: 'BSD-2-Clause-Patent AND GPL-2.0-or-later',
 
18
  default_options: [
 
19
    'c_std=c99',
 
20
    'buildtype=release',
 
21
    'warning_level=3'
 
22
  ],
18
23
  version: 'DUMMY',
19
 
  meson_version: '>=0.47.0')
 
24
  meson_version: '>=0.49.0'
 
25
)
20
26
 
21
27
subdir('meson')