• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# #############################################################################
2# Copyright (c) 2018-present        lzutao <taolzu(at)gmail.com>
3# Copyright (c) 2022-present        Tristan Partin <tristan(at)partin.io>
4# All rights reserved.
5#
6# This source code is licensed under both the BSD-style license (found in the
7# LICENSE file in the root directory of this source tree) and the GPLv2 (found
8# in the COPYING file in the root directory of this source tree).
9# #############################################################################
10
11option('debug-level', type: 'integer', min: 0, max: 7, value: 1,
12  description: 'Enable run-time debug. See lib/lz4hc.c')
13option('unstable', type: 'boolean', value: false,
14  description: 'Expose unstable interfaces')
15option('programs', type: 'boolean', value: false,
16  description: 'Enable programs build')
17option('tests', type: 'boolean', value: false,
18  description: 'Enable tests build')
19option('contrib', type: 'boolean', value: false,
20  description: 'Enable contrib build')
21option('examples', type: 'boolean', value: false,
22  description: 'Enable examples build')
23option('memory-usage', type: 'integer', min: 0, value: 0,
24  description: 'See LZ4_MEMORY_USAGE. 0 means use the LZ4 default')
25