• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# #############################################################################
2# Copyright (c) 2018-present    lzutao <taolzu(at)gmail.com>
3# All rights reserved.
4#
5# This source code is licensed under both the BSD-style license (found in the
6# LICENSE file in the root directory of this source tree) and the GPLv2 (found
7# in the COPYING file in the root directory of this source tree).
8# #############################################################################
9
10# This is a dummy meson file.
11# The intention is that it can be easily moved to the root of the project
12# (together with meson_options.txt) and packaged for wrapdb.
13
14project(
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  ],
23  version: 'DUMMY',
24  meson_version: '>=0.49.0'
25)
26
27subdir('meson')
28