ysyx-workbench/abstract-machine/CMakePresets.json

30 lines
889 B
JSON
Raw Permalink Normal View History

2024-03-25 08:56:16 +00:00
{
"version": 6,
"configurePresets": [
{
"name": "native",
"displayName": "Native",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
2024-07-09 09:26:11 +00:00
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
2024-03-25 08:56:16 +00:00
"ISA": "native",
"__PLATFORM_NATIVE__": true,
"NATIVE_USE_KLIB": true
}
},
{
"name": "riscv",
"displayName": "RV32 all platform",
2024-03-25 08:56:16 +00:00
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
2024-07-09 09:26:11 +00:00
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
2024-03-25 08:56:16 +00:00
"ISA": "riscv",
"__PLATFORM_NPC__": true,
2024-03-25 08:56:16 +00:00
"__PLATFORM_NEMU__": true
}
}
]
2024-07-09 09:26:11 +00:00
}