27 lines
859 B
JSON
27 lines
859 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "windows-debug",
|
|
"generator": "Ninja",
|
|
"configurationType": "Debug",
|
|
"inheritEnvironments": [
|
|
"msvc_x64_x64"
|
|
],
|
|
"buildRoot": "${projectDir}\\out\\build\\${name}",
|
|
"installRoot": "${projectDir}\\out\\install\\${name}",
|
|
"cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"Debug\""
|
|
},
|
|
{
|
|
"name": "windows-release",
|
|
"generator": "Ninja",
|
|
"configurationType": "Release",
|
|
"inheritEnvironments": [
|
|
"msvc_x64_x64"
|
|
],
|
|
"buildRoot": "${projectDir}\\out\\build\\${name}",
|
|
"installRoot": "${projectDir}\\out\\install\\${name}",
|
|
"cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"Release\""
|
|
}
|
|
]
|
|
}
|