We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Config/build/compilation-database
1 parent ca0131b commit 956080eCopy full SHA for 956080e
NEWS.md
@@ -6,7 +6,7 @@
6
to your `DESCRIPTION` file:
7
8
```
9
- Config/devtools/compilation-database: true
+ Config/build/compilation-database: true
10
11
12
You'll also want to add `compile_commands.json` to your gitignore and
R/compilation-db.R
@@ -40,12 +40,12 @@ generate_db <- function(path = ".") {
40
41
has_compilation_db <- function(desc) {
42
field <- toupper(desc$get_field(
43
- "Config/devtools/compilation-database",
+ "Config/build/compilation-database",
44
default = FALSE
45
))
46
47
out <- as.logical(field)
48
- check_bool(out, arg = "Config/devtools/compilation-database")
+ check_bool(out, arg = "Config/build/compilation-database")
49
50
out
51
}
0 commit comments