1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-17 07:57:45 +00:00
sapphire/CMakeSettings.json

33 lines
916 B
JSON
Raw Normal View History

2017-08-08 13:53:47 +02:00
{
// See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file.
"environments": [
{
"BuildDir": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build"
}
],
"configurations": [
2017-12-01 01:02:01 +11:00
{
"name": "x64-Debug",
"generator": "Visual Studio 16 2019 Win64",
2017-12-01 01:02:01 +11:00
"configurationType": "Debug",
"buildRoot": "${env.BuildDir}\\${name}",
2017-12-01 01:02:01 +11:00
"cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"Debug\"",
"buildCommandArgs": "-m -v:minimal",
"inheritEnvironments": [
"msvc_x64"
]
2017-12-01 01:02:01 +11:00
},
{
"name": "x64-Release",
"generator": "Visual Studio 16 2019 Win64",
2017-12-01 01:02:01 +11:00
"configurationType": "Release",
"buildRoot": "${env.BuildDir}\\${name}",
"cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"RelWithDebInfo\"",
"buildCommandArgs": "-m -v:minimal",
"inheritEnvironments": [
"msvc_x64"
]
}
]
}