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('lz4', ['c'],
15  license: ['BSD', 'GPLv2'],
16  default_options : ['c_std=c99',
17    'buildtype=release'],
18  version: 'DUMMY',
19  meson_version: '>=0.47.0')
20
21subdir('meson')
22