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

App::fbx - Command line interface to FFI::Build

VERSION

version 0.12

SYNOPSIS

Create a script named fbx:

 #!/usr/bin/env perl
 use App::fbx;
 exit App::fbx->main(@ARGV);

DESCRIPTION

This module provides a command line interface to FFI::Build::MM, which allows you to build libraries for a distribution in a development environment without invoking ExtUtils::MakeMaker or Dist::Zilla.

At the moment a script invoking this module is not provided, but it may be added if/when this module is spun off from the rest of FFI::Build.

COMMANDS

fbx all

 ./fbx all

Build the library in ./ffi and ./t/ffi.

fbx build

 ./fbx build

Builds the library in ./ffi.

fbx test

 ./fbx test

Builds the library in ./t/ffi.

fbx clean

 ./fbx clean

Remove the libraries and intermediate files from ./ffi and ./t/ffi.

AUTHOR

Graham Ollis <plicease@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2018 by Graham Ollis.

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