Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/.DS_Store
.idea
.vscode/settings.json
.vscode/tasks.json
.cproject
.project
.settings
Expand Down
4 changes: 2 additions & 2 deletions .vscode/settings.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"C_Cpp.default.cppStandard": "c++14",
"C_Cpp.default.intelliSenseMode": "macos-clang-arm64",
"terminal.integrated.env.osx": {
"HYRAX_PREFIX": The litteral value of $prefix.,
"prefix": The litteral value of $prefix
"PATH": $prefix litteral value + /bin: $prefix litteral value + deps/bin:${env:PATH}
},
"terminal.integrated.env.linux": {
"HYRAX_PREFIX": The litteral value of $prefix.,
"prefix": The litteral value of $prefix
"PATH": $prefix litteral value + /bin: $prefix litteral value + deps/bin:${env:PATH}"
}
}
133 changes: 0 additions & 133 deletions .vscode/tasks.json

This file was deleted.

86 changes: 86 additions & 0 deletions .vscode/tasks.json.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"version": "2.0.0",
"options": {
"cwd": "${workspaceFolder}",
"env": {
"TESTSUITEFLAGS": "-j",
"prefix": Set to $prefix
"PATH": $prefix value /bin:$prefix value /deps/bin:${env:PATH
}
},
"shell": {
"executable": "/bin/zsh",
"args": [
"-c"
]
}
},
"tasks": [
{
"label": "autotools: configure",
"type": "shell",
"command": "echo \"prefix: $prefix\" && autoreconf -fvi && ./configure --prefix=$prefix --enable-developer",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "autotools: build",
"type": "shell",
"command": "make -j",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "autotools: check",
"type": "shell",
"command": "make -j check",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "autotools: install",
"type": "shell",
"command": "make install",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "autotools: clean",
"type": "shell",
"command": "make clean",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "autotools: compile_commands",
"type": "shell",
"command": "make clean && bear -- make -j && bear --append -- make -j check",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
4 changes: 2 additions & 2 deletions Doxygen-plan.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**Documentation Plan Prompt**

You are working in `libdap4`. Document public methods in stages, with review after each stage.
Target baseline is **1,918 undocumented public methods** (from prior scan).
You are working in `libdap4`. Document public methods in stages, with review after each stage.
Target baseline is **1,918 undocumented public methods** (from prior scan).
Use existing Doxygen settings from `doxy.conf` exactly as-is.

**Doxygen Constraints To Respect**
Expand Down