Skip to content
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ launch.json
# Assitnow token and files for test script
tokens.yaml
*.ubx
/testing/
/.idea/

# Build output directories (catch-all for ad-hoc build dirs)
/build_*/
/build_hw/

# Local development files
.semgrepignore
Expand Down
Empty file removed .gitmodules
Empty file.
8 changes: 4 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
"version": "2.0.0",
"tasks": [
{
"label": "Build MATEKH743",
"label": "Build AOCODARCH7DUAL",
"type": "shell",
"command": "ninja MATEKH743",
"command": "make AOCODARCH7DUAL",
"group": "build",
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/build"
}
},
{
"label": "Build MATEKH743",
"label": "Build AOCODARCH7DUAL",
"type": "shell",
"command": "ninja MATEKH743",
"command": "make AOCODARCH7DUAL",
"group": {
"kind": "build",
"isDefault": true
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ get_git_head_revision(GIT_REFSPEC GIT_SHA1)
string(SUBSTRING ${GIT_SHA1} 0 8 GIT_REV)

# Load settings related functions, so the tests can use them
include(dsdlc_generated)
include(main)
include(settings)

Expand Down
Loading
Loading