Re: [R] Building a package with an existing dll

2012-10-15 Thread Simon Knapp
Anything you put in the folder 'inst' of a package gets copied, as is, to the installed package once 'everything else' is done (see section 1.1.3 of "Writing R Extensions" - which you read for caveats). Hence you can create inst/libs//libs/.dll where: - is either 'x64' or 'i386' (or both if you

[R] Building a package with an existing dll

2012-10-15 Thread GlennManion
I have setup a package directory structure with all the relevent files in the src, R, man and data directories. Also have the correct DESCRIPTION and NAMESPACE files in the root directory. I don't wisk to recompile the .dll file in the src directory as it currently works fine if I locate it in th