mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-22 00:59:18 +01:00
3bceb39966
Removes the -DPUBLIC_RELEASE flag. Cemu's debug asserts are now only enabled if the build configuration is Debug. Similarly, on Windows the console is only shown for Debug builds.
28 lines
852 B
JSON
28 lines
852 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "RelWithDebInfo",
|
|
"configurationType": "RelWithDebInfo",
|
|
"generator": "Ninja",
|
|
"inheritEnvironments": [ "msvc_x64_x64" ],
|
|
"buildRoot": "${projectDir}\\out\\build\\${name}",
|
|
"installRoot": "${projectDir}\\out\\install\\${name}"
|
|
},
|
|
{
|
|
"name": "Release",
|
|
"configurationType": "Release",
|
|
"generator": "Ninja",
|
|
"inheritEnvironments": [ "msvc_x64_x64" ],
|
|
"buildRoot": "${projectDir}\\out\\build\\${name}",
|
|
"installRoot": "${projectDir}\\out\\install\\${name}",
|
|
},
|
|
{
|
|
"name": "Debug",
|
|
"configurationType": "Debug",
|
|
"generator": "Ninja",
|
|
"inheritEnvironments": [ "msvc_x64_x64" ],
|
|
"buildRoot": "${projectDir}\\out\\build\\${name}",
|
|
"installRoot": "${projectDir}\\out\\install\\${name}"
|
|
}
|
|
]
|
|
} |