-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Deniz Erbilgin
committed
Jan 29, 2018
1 parent
348432b
commit 2005408
Showing
3 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Mac", | ||
"includePath": [ | ||
"/usr/include", | ||
"/usr/local/include", | ||
"${workspaceRoot}" | ||
], | ||
"defines": [], | ||
"intelliSenseMode": "clang-x64", | ||
"browse": { | ||
"path": [ | ||
"/usr/include", | ||
"/usr/local/include", | ||
"${workspaceRoot}" | ||
], | ||
"limitSymbolsToIncludedHeaders": true, | ||
"databaseFilename": "" | ||
}, | ||
"macFrameworkPath": [ | ||
"/System/Library/Frameworks", | ||
"/Library/Frameworks" | ||
] | ||
}, | ||
{ | ||
"name": "Linux", | ||
"includePath": [ | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7", | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/x86_64-redhat-linux", | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/backward", | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/include", | ||
"/usr/local/include", | ||
"/usr/include", | ||
"/opt/arduino/hardware/arduino/avr/cores/arduino", | ||
"/opt/arduino/hardware/arduino/avr/libraries", | ||
"/opt/arduino/hardware/arduino/avr/variants/standard", | ||
"/opt/arduino/hardware/tools/avr/avr/include", | ||
"${workspaceRoot}", | ||
"${workspaceRoot}/content/OTAESGCM" | ||
], | ||
"defines": [], | ||
"intelliSenseMode": "clang-x64", | ||
"browse": { | ||
"path": [ | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7", | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/x86_64-redhat-linux", | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/../../../../include/c++/7/backward", | ||
"/usr/lib/gcc/x86_64-redhat-linux/7/include", | ||
"/usr/local/include", | ||
"/usr/include", | ||
"/opt/arduino/hardware/arduino/avr/cores/arduino", | ||
"/opt/arduino/hardware/arduino/avr/libraries", | ||
"/opt/arduino/hardware/arduino/avr/variants/standard", | ||
"/opt/arduino/hardware/tools/avr/avr/include", | ||
"${workspaceRoot}", | ||
"${workspaceRoot}/content/OTAESGCM" | ||
], | ||
"limitSymbolsToIncludedHeaders": true, | ||
"databaseFilename": "" | ||
} | ||
}, | ||
{ | ||
"name": "Win32", | ||
"includePath": [ | ||
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include", | ||
"${workspaceRoot}" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE" | ||
], | ||
"intelliSenseMode": "msvc-x64", | ||
"browse": { | ||
"path": [ | ||
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include/*", | ||
"${workspaceRoot}" | ||
], | ||
"limitSymbolsToIncludedHeaders": true, | ||
"databaseFilename": "" | ||
} | ||
} | ||
], | ||
"version": 3 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
# Note: Should be run from project root. | ||
|
||
# Go to Debug dir | ||
cd Debug | ||
|
||
# Make project | ||
make clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "test", | ||
"type": "shell", | ||
"command": ".vscode/tests.sh", | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"focus": false, | ||
"panel": "shared" | ||
}, | ||
"problemMatcher": "$gcc" | ||
} | ||
] | ||
} |