ysyx-workbench/abstract-machine/CMakePresets.json

29 lines
870 B
JSON
Raw 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": {
"CMAKE_BUILD_TYPE": "Debug",
"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": {
"CMAKE_BUILD_TYPE": "Debug",
"ISA": "riscv",
"__PLATFORM_NPC__": true,
2024-03-25 08:56:16 +00:00
"__PLATFORM_NEMU__": true
}
}
]
}