-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakePresets.json
More file actions
25 lines (25 loc) · 816 Bytes
/
CMakePresets.json
File metadata and controls
25 lines (25 loc) · 816 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
{
"version": 3,
"configurePresets": [
{
"name": "arty-a7-100",
"displayName": "Arty A7 100T FPGA build.",
"binaryDir": "build/arty-a7-100",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "fpga",
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/scripts/toolchain.cmake",
"BL_TARGET_FPGA": "arty-a7-100"
}
},
{
"name": "sim-a7-100",
"displayName": "Arty A7 100T Verilator simulation build.",
"binaryDir": "build/sim-a7-100",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "sim",
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/scripts/toolchain.cmake",
"BL_TARGET_FPGA": "arty-a7-100"
}
}
]
}