-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
use_cpp11, use_cpp14, use_cpp17 #307
Comments
Sounds good to me! cc @hadley @jimhester |
might be an argument to use_rcpp or standalone functions, or both. |
Random API thoughts: You don't have to use Rcpp with C++, but it's certainly the most common way, so I wouldn't expend much effort on an API that doesn't use Rcpp (and looking at We probably should extract out a use_directory("src")
use_git_ignore(c("*.o", "*.so", "*.dll"), "src") We may also extend |
This is somewhat orthogonal to Rcpp or not Rcpp, and more about when you want to use some C++ standard with or without Rcpp. |
This would be an ideal extension candidate for the |
I'm putting this in the backlog w.r.t. preparing the release of v1.5.0. If anyone has immediate plans to move on this, let me know. |
Just added |
I can't never remember what I have to do for variants of C++.
https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Using-C_002b_002b11-code
https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Using-C_002b_002b14-code
https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Using-C_002b_002b17-code
Should I make the relevant
use_cpp_
functions ?The text was updated successfully, but these errors were encountered: