mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 18:26:16 +02:00
33 lines
690 B
Meson
33 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')
|