in reply to Re^2: Setting the build directory for a module using Inline::C
in thread Setting the build directory for a module using Inline::C
Cheers,use warnings; use Inline C => Config => # C:/inline_build must already exist DIRECTORY => 'C:/inline_build', ; use Inline C =><<'EOC'; void foo() { printf("Hello World\n"); } EOC foo();
|
---|