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

use strict ;
require "../../lib/Inline/Java/Portable.pm" ;


WriteMakefile(
	NAME => 'Inline::Java::PerlNatives',
	VERSION_FROM => 'PerlNatives.pm',
	INC => join(' ', @main::I),
	LIBS => [join(' ', @main::L) . " -ljvm"],
	dynamic_lib => Inline::Java::Portable::portable("dynamic_lib"),
	# CCFLAGS => '-D_REENTRANT',
) ;