-
Notifications
You must be signed in to change notification settings - Fork 1
/
CppProperties.json
49 lines (49 loc) · 1.24 KB
/
CppProperties.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"configurations": [
{
"defines": [
"WIN32",
"NDEBUG",
"UNICODE",
"_UNICODE"
],
"includePath": [
"${env.INCLUDE}",
"${workspaceRoot}\\**"
],
"inheritEnvironments": [
"msvc_x64"
],
"intelliSenseMode": "windows-msvc-x64",
"name": "x64-Release"
},
{
"addressSanitizerRuntimeFlags": "detect_leaks=0",
"buildCommandArgs": "",
"cmakeCommandArgs": "",
"cmakeExecutable": "/usr/bin/cmake",
"configurationType": "Debug",
"ctestCommandArgs": "",
"defines": [
"__linux__"
],
"generator": "Unix Makefiles",
"inheritEnvironments": [ "linux_x64" ],
"name": "Linux-Debug",
"remoteBuildRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/build/${name}",
"remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src",
"remoteCopyBuildOutput": false,
"remoteCopySources": true,
"remoteCopySourcesExclusionList": [ ".vs", ".git", "out" ],
"remoteCopySourcesMethod": "rsync",
"remoteInstallRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/out/install/${name}",
"remoteMachineName": "${defaultRemoteMachineName}",
"rsyncCommandArgs": "-t --delete --delete-excluded",
"undefines": [
"_WIN64",
"_WIN32"
],
"variables": []
}
]
}