mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-05 17:44:52 +01:00
40 lines
948 B
JSON
40 lines
948 B
JSON
|
{
|
||
|
"version": 3,
|
||
|
"cmakeMinimumRequired": {
|
||
|
"major": 3,
|
||
|
"minor": 7,
|
||
|
"patch": 0
|
||
|
},
|
||
|
"configurePresets": [
|
||
|
{
|
||
|
"name": "ninja",
|
||
|
"displayName": "Ninja",
|
||
|
"description": "Generate Ninja project files",
|
||
|
"binaryDir": "${sourceDir}/builds/${presetName}",
|
||
|
"generator": "Ninja Multi-Config",
|
||
|
"cacheVariables": {
|
||
|
"CMAKE_TOOLCHAIN_FILE": {
|
||
|
"type": "FILEPATH",
|
||
|
"value": "$env{CMAKE_TOOLCHAIN_FILE}"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"buildPresets": [
|
||
|
{
|
||
|
"name": "ninja-debug",
|
||
|
"configurePreset": "ninja",
|
||
|
"displayName": "Build ninja-debug",
|
||
|
"description": "Build ninja Debug configuration",
|
||
|
"configuration": "Debug"
|
||
|
},
|
||
|
{
|
||
|
"name": "ninja-release",
|
||
|
"configurePreset": "ninja",
|
||
|
"displayName": "Build ninja-release",
|
||
|
"description": "Build ninja Release configuration",
|
||
|
"configuration": "RelWithDebInfo"
|
||
|
}
|
||
|
]
|
||
|
}
|