-
-
18 May 2022 16:50:36 UTC
- Distribution: XS-Parse-Keyword
- Module version: 0.23
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (144 / 0 / 9)
- Kwalitee
Bus factor: 1- License: perl_5
- Perl: v5.14.0
- Activity
24 month- Tools
- Download (70.52KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
XS::Parse::Keyword::Builder
- build-time support forXS::Parse::Keyword
SYNOPSIS
In Build.PL:
use XS::Parse::Keyword::Builder; my $build = Module::Build->new( ..., configure_requires => { ... 'XS::Parse::Keyword::Builder' => 0, } ); XS::Parse::Keyword::Builder->extend_module_build( $build ); ...
DESCRIPTION
This module provides a build-time helper to assist authors writing XS modules that use XS::Parse::Keyword. It prepares a Module::Build-using distribution to be able to make use of
XS::Parse::Keyword
.FUNCTIONS
write_XSParseKeyword_h
XS::Parse::Keyword::Builder->write_XSParseKeyword_h
Writes the XSParseKeyword.h file to the current working directory. To cause the compiler to actually find this file, see "extra_compiler_flags".
extra_compiler_flags
@flags = XS::Parse::Keyword::Builder->extra_compiler_flags
Returns a list of extra flags that the build scripts should add to the compiler invocation. This enables the C compiler to find the XSParseKeyword.h file.
extend_module_build
XS::Parse::Keyword::Builder->extend_module_build( $build )
A convenient shortcut for performing all the tasks necessary to make a Module::Build-based distribution use the helper.
AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
Module Install Instructions
To install XS::Parse::Keyword, copy and paste the appropriate command in to your terminal.
cpanm XS::Parse::Keyword
perl -MCPAN -e shell install XS::Parse::Keyword
For more information on module installation, please visit the detailed CPAN module installation guide.