We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b79b508 commit 298db17Copy full SHA for 298db17
R/plugin.R
@@ -0,0 +1,15 @@
1
+
2
+# Inline plugin used by sourceCpp.
3
+inlineCxxPlugin <- function() {
4
5
+ list(
6
+ env = list(
7
+ PKG_CXXFLAGS = tbbCxxFlags(),
8
+ PKG_LIBS = tbbLdFlags()
9
+ ),
10
+ includes = "#include <RcppParallel.h>",
11
+ LinkingTo = "RcppParallel",
12
+ body = identity,
13
+ Depends = "RcppParallel"
14
+ )
15
+}
0 commit comments