mirror of
https://github.com/minetest/minetest.git
synced 2024-11-08 08:43:47 +01:00
42 lines
966 B
JSON
42 lines
966 B
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 12
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "Debug",
|
|
"displayName": "Debug",
|
|
"description": "Debug preset with debug symbols and no optimizations",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "Release",
|
|
"displayName": "Release",
|
|
"description": "Release preset with optimizations and no debug symbols",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
},
|
|
{
|
|
"name": "RelWithDebInfo",
|
|
"displayName": "RelWithDebInfo",
|
|
"description": "Release with debug symbols",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
|
}
|
|
},
|
|
{
|
|
"name": "MinSizeRel",
|
|
"displayName": "MinSizeRel",
|
|
"description": "Release with minimal code size",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "MinSizeRel"
|
|
}
|
|
}
|
|
]
|
|
}
|