-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathOdbDesign.code-workspace
More file actions
43 lines (43 loc) · 931 Bytes
/
OdbDesign.code-workspace
File metadata and controls
43 lines (43 loc) · 931 Bytes
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
37
38
39
40
41
42
43
{
"folders": [
{
"path": "."
}
],
"settings": {
"vcpkg.general.enable": true,
"cmake.configureSettings": {
"CMAKE_TOOLCHAIN_FILE": "${env:VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
},
"vcpkg.target.installDependencies": true,
"vcpkg.target.preferSystemLibs": false,
"vcpkg.target.useManifest": true,
"files.associations": {
".gitignore.genai": "ignore",
"*.seda": "python",
"filesystem": "cpp",
"chrono": "cpp",
"csignal": "cpp",
"iostream": "cpp",
"string": "cpp",
"utility": "cpp",
"memory": "cpp",
"thread": "cpp",
"exception": "cpp",
"cstdlib": "cpp"
},
"markdown.validate.enabled": true
},
"launch": {
"configurations": [
{
"type": "cmake",
"request": "launch",
"name": "Debug portfile(s)",
"cmakeDebugType": "external",
"pipeName": "\\\\.\\pipe\\vcpkg_ext_portfile_dbg",
"preLaunchTask": "Debug vcpkg commands"
}
]
}
}