The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Dist::Build::XS::Export - Dist::Build extension to export headers for other XS modules

VERSION

version 0.012

SYNOPSIS

 load_module('Dist::Build::Export');
 export_headers(
     module => 'Foo::Bar',
     dir    => 'include',
 );

DESCRIPTION

This Dist::Build extension will export headers for your module, so they can be used by other modules using Dist::Build::Import.

METHODS

export_headers

This copies the given header for the appropriate module to the approriate sharedir.

  • module

    The name of the module to export. This defaults to the main module.

  • dir

    The directory to export (e.g. 'include').

  • file

    A file (or a list of files) to export (e.g. 'foo.h').

At least one of dir and file must be defined. Note that this function can be called multiple times (e.g. for multiple modules).

AUTHOR

Leon Timmermans <fawaka@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2024 by Leon Timmermans.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.