forked from erigontech/silkworm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeSettings.json
28 lines (28 loc) · 1014 Bytes
/
CMakeSettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Visual Studio 17 2022 Win64",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\silkworm\\build\\${name}",
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\silkworm\\install\\${name}",
"cmakeCommandArgs": "-Wno-dev -DSILKWORM_CORE_ONLY:BOOL=OFF",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"addressSanitizerEnabled": false
},
{
"name": "x64-Release",
"generator": "Visual Studio 17 2022 Win64",
"configurationType": "Release",
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\silkworm\\build\\${name}",
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\silkworm\\install\\${name}",
"cmakeCommandArgs": "-Wno-dev",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"addressSanitizerEnabled": false
}
]
}