Using roxygen2, how do I specify .registration = TRUE for @useDynLib? I tried:
@useDynLib rmongodb .registration=TRUE
but then I end up with
useDynLib(rmongodb,".registration=TRUE")
in the NAMESPACE file, i.e. it quotes the input to make it a single argument.
Alternatively, is there some way to just add some raw text to NAMESPACE when it's being managed by roxygen?
Using
roxygen2, how do I specify.registration = TRUEfor@useDynLib? I tried:but then I end up with
in the
NAMESPACEfile, i.e. it quotes the input to make it a single argument.Alternatively, is there some way to just add some raw text to
NAMESPACEwhen it's being managed byroxygen?