-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeSettings.json
More file actions
36 lines (36 loc) · 1.19 KB
/
Copy pathCMakeSettings.json
File metadata and controls
36 lines (36 loc) · 1.19 KB
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
29
30
31
32
33
34
35
36
{
"configurations": [
{
"name": "x64-Release",
"generator": "Visual Studio 18 2026",
"configurationType": "Release",
"inheritEnvironments": [ "msvc_x86_x64" ],
"buildRoot": "${projectDir}\\build\\${name}",
"installRoot": "${projectDir}\\install",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"platform": "x64",
"intelliSenseMode": "windows-msvc-x64",
"variables": [
{ "name": "BERT_VCPKG_TRIPLET", "value": "x64-windows", "type": "STRING" },
{ "name": "BERT_USE_ONNXRUNTIME_GPU", "value": "OFF", "type": "STRING" }
]
},
{
"name": "x64-Debug",
"generator": "Visual Studio 18 2026",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x86_x64" ],
"buildRoot": "${projectDir}\\build\\${name}",
"installRoot": "${projectDir}\\install",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"platform": "x64",
"intelliSenseMode": "windows-msvc-x64",
"variables": [
{ "name": "BERT_VCPKG_TRIPLET", "value": "x64-windows", "type": "STRING" },
{ "name": "BERT_USE_ONNXRUNTIME_GPU", "value": "OFF", "type": "STRING" }
]
}
]
}