1
1
\name {Rcpp.plugin.maker }
2
2
\alias {Rcpp.plugin.maker }
3
3
\title {
4
- Facilitating making package plugins
4
+ Facilitating making package plugins
5
5
}
6
6
\description {
7
- This function helps packages making inline plugins.
7
+ This function helps packages making inline plugins.
8
8
}
9
9
\usage {
10
10
Rcpp.plugin.maker(
11
11
include.before = " " ,
12
12
include.after = " " ,
13
13
LinkingTo = unique(c(package , " Rcpp" )),
14
14
Depends = unique(c(package , " Rcpp" )),
15
+ Imports = unique(c(package , " Rcpp" )),
15
16
libs = " " ,
16
17
Makevars = NULL ,
17
18
Makevars.win = NULL ,
@@ -23,14 +24,15 @@ Rcpp.plugin.maker(
23
24
\item {include.before }{Code to be included before the \samp {Rcpp.h } file }
24
25
\item {include.after }{Code to be included after the \samp {Rcpp.h } file }
25
26
\item {LinkingTo }{Packages to be added to the \samp {LinkingTo } field }
26
- \item {Depends }{Packages to be added to the \samp {Depends } field }
27
+ \item {Depends }{Packages to be added to the \samp {Depends } field [deprecated ] }
28
+ \item {Imports }{Packages to be added to the \samp {Depends } field }
27
29
\item {libs }{library flags }
28
30
\item {Makevars }{content for a \samp {Makevars } file , or \code {NULL }}
29
31
\item {Makevars.win }{content for a \samp {Makevars.win } file , or \code {NULL }}
30
32
\item {package }{The package this plugin is for . }
31
33
}
32
34
\value {
33
- A function that is suitable as a plugin. See for example the
34
- \samp {RcppArmadillo } package that uses this to create its inline plugin.
35
+ A function that is suitable as a plugin. See for example the
36
+ \samp {RcppArmadillo } package that uses this to create its inline plugin.
35
37
}
36
38
\keyword {interface }
0 commit comments