Skip to content

Commit 33339d5

Browse files
committed
Add compilation-database infrastructure
1 parent 0005f67 commit 33339d5

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@
4141
^doc$
4242
^Meta$
4343
^CRAN-SUBMISSION$
44+
^compile_commands\.json$
45+
^\.cache$

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ vignettes/*.R
2323
bench-libs
2424
doc
2525
Meta
26+
compile_commands.json
27+
.cache

.vscode/launch.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "(lldb) Attach to R",
6+
"type": "lldb",
7+
"request": "attach",
8+
"pid": "${command:pickMyProcess}",
9+
"stopOnEntry": false
10+
}
11+
]
12+
}

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ VignetteBuilder:
6161
knitr
6262
Config/Needs/website: tidyverse, shiny, pkgdown, tidyverse/tidytemplate
6363
Config/testthat/edition: 3
64+
Config/build/compilation-database: true
6465
Encoding: UTF-8
6566
LazyData: true
6667
Roxygen: list(markdown = TRUE)

0 commit comments

Comments
 (0)