forked from ladislas/Bare-Arduino-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbare-arduino.sublime-project
More file actions
49 lines (44 loc) · 935 Bytes
/
bare-arduino.sublime-project
File metadata and controls
49 lines (44 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"folders":
[
{
"path": "/Users/Ladislas/dev/leka/Bare-Arduino-Project"
}
],
"settings":
{
"add_language_option": true,
"additional_language_options":
{
"c": [],
"c++": []
},
"inhibit_sublime_completions": true,
"sublimeclang_enable_fast_completions": true,
"sublimeclang_options":
[
// Base options
"-std=c++11",
"-mmcu=atmega2560",
"-DF_CPU=16000000L",
"-MMD -DUSB_VID=null",
"-DUSB_PID=null",
"-DARDUINO=105",
"-D__AVR__",
"-D__AVR_ATmega2560__",
// Flags
// "-pedantic",
"-Wall",
"-Wextra",
"-ferror-limit=0",
"-Wno-unknown-warning-option",
"-Wno-unused-function",
"-Wno-unused-variable",
"-Wno-attributes",
// Libs - uses wild cards for simplicity
"-I${folder:${project_path:moti.sublime-project}}/lib/**",
"-I/usr/local/Cellar/avr-libc/**",
"-I/Applications/Arduino.app/**"
]
}
}