-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMyName.csolution.yml
32 lines (26 loc) · 1.16 KB
/
MyName.csolution.yml
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
solution:
# A solution is a collection of related projects that share same base configuration
created-for: CMSIS-Toolbox@2.6.0
cdefault: # use cdefault.yml for default toolchain settings
# compiler: AC6 # select a compiler (AC6, GCC, IAR, LLVM)
# List the packs that define the device and/or board, optional with minimum version
packs:
- pack: MyDevice_DFP # replace with matching device family pack (DFP) for the device
# - pack: MyBoard_BSP@^1.2.0 # add a board support pack (BSP) when using a board
# List different hardware targets that are used to deploy the solution
target-types:
- type: MyTargetName # choose a brief name for your target hardware
device: MyDeviceName # replace with your device or comment out to use a board
# board: MyBoardName # optional specify you board (device selected by a board)
# List different build types
build-types:
- type: Debug
debug: on
optimize: debug
- type: Release
debug: off
optimize: balanced
# List related projects
projects:
- project: Test0/MyName0.cproject.yml
- project: Test1/MyName1.cproject.yml