-
Notifications
You must be signed in to change notification settings - Fork 110
/
cmake-variants.json
33 lines (33 loc) · 1000 Bytes
/
cmake-variants.json
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
{
"buildType": {
"default$": "teensy",
"description$": "the build type to use",
"teensy": {
"oneWordSummary$": "Teensy",
"description$": "Create firmware for Teensy",
"buildType": "Debug",
"settings": {
"PLATFORM": "Teensy"
}
},
"particle": {
"oneWordSummary$": "Photon",
"description$": "Create library for Particle Photon",
"buildType": "Debug",
"settings": {
"PLATFORM": "Particle",
"PARTICLE_PLATFORM": "photon"
}
},
"test": {
"oneWordSummary$": "Test",
"description$": "Test the project",
"buildType": "Debug",
"settings": {
"PLATFORM": "Host_Test",
"CMAKE_C_COMPILER": "/usr/local/bin/gcc-6",
"CMAKE_CXX_COMPILER": "/usr/local/bin/g++-6"
}
}
}
}