Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 5e28d00

Browse files
committed
Added config for the travis-ci extension for vscode
1 parent 378091e commit 5e28d00

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.vscode/c_cpp_properties.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Win32",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [
9+
"_DEBUG",
10+
"UNICODE",
11+
"_UNICODE"
12+
],
13+
"compilerPath": "C:\\Program Files\\MinGW\\x64 6.3.0\\posix\\mingw64\\bin\\gcc.exe",
14+
"cStandard": "c11",
15+
"cppStandard": "c++17",
16+
"intelliSenseMode": "clang-x64"
17+
}
18+
],
19+
"version": 4
20+
}

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"travis.repository": "Arduino-CMake-NG",
3+
"travis.username": "arduino-cmake",
4+
"travis.statusPollingInterval": 120,
5+
26
"cmake.sourceDirectory": "${workspaceRoot}/examples",
37
"cmake.buildDirectory": "${workspaceRoot}/build/cmake-build-debug",
48
"cmake.preferredGenerators": [

0 commit comments

Comments
 (0)