30 lines
657 B
JSON
30 lines
657 B
JSON
{
|
|
"version": 6,
|
|
"configurePresets": [
|
|
{
|
|
"name": "vs2026-x64",
|
|
"displayName": "Visual Studio 2026 x64",
|
|
"generator": "Visual Studio 18 2026",
|
|
"architecture": "x64",
|
|
"binaryDir": "${sourceDir}/build/vs2026",
|
|
"cacheVariables": {
|
|
"CMAKE_CONFIGURATION_TYPES": "Debug;Release",
|
|
"EIGEN_ROOT": "${sourceDir}/external/eigen-3.4.0"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "vs2026-release",
|
|
"configurePreset": "vs2026-x64",
|
|
"configuration": "Release"
|
|
},
|
|
{
|
|
"name": "vs2026-debug",
|
|
"configurePreset": "vs2026-x64",
|
|
"configuration": "Debug"
|
|
}
|
|
]
|
|
}
|
|
|