mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
32 lines
690 B
Meson
32 lines
690 B
Meson
# Nix-Perl build options
|
|
#============================================================================
|
|
|
|
|
|
# compiler args
|
|
#============================================================================
|
|
|
|
option(
|
|
'version',
|
|
type : 'string',
|
|
description : 'nix-perl version')
|
|
|
|
option(
|
|
'tests',
|
|
type : 'feature',
|
|
value : 'disabled',
|
|
description : 'run nix-perl tests')
|
|
|
|
|
|
# Location of Perl Modules
|
|
#============================================================================
|
|
option(
|
|
'dbi_path',
|
|
type : 'string',
|
|
value : '/usr',
|
|
description : 'path to perl::dbi')
|
|
|
|
option(
|
|
'dbd_sqlite_path',
|
|
type : 'string',
|
|
value : '/usr',
|
|
description : 'path to perl::dbd-SQLite')
|