AI-LibNeural
view release on metacpan or search on metacpan
LICENSE
LibNeural.pm
LibNeural.xs
MANIFEST This list of files
MANIFEST.SKIP
Makefile.PL
README
t/00.AILibNeural.t
t/01.AILibNeuralChild.t
typemap
Makefile.PL view on Meta::CPAN
# Boston, MA 02111-1307 USA.
#
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'AI::LibNeural',
'VERSION_FROM' => 'LibNeural.pm',
'ABSTRACT_FROM' => 'LibNeural.pm',
'LIBS' => [ '-lneural' ],
'TYPEMAPS' => [ './typemap' ],
# this is going to be linked with a c++ lib so special magic is
# required. MakeMaker will complain that it doesn't know anything
# about CC, and LD, but appearently it does
'CC' => 'g++',
'LD' => '$(CC)',
'XSOPT' => '-C++',
);
( run in 1.909 second using v1.01-cache-2.11-cpan-e5176c747c2 )