-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCMakeSettings.json
85 lines (85 loc) · 3.79 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\Debug",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "-DNO_RANDOM=True",
"ctestCommandArgs": "",
"buildCommandArgs": "-v"
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "Release",
"buildRoot": "${projectDir}\\out\\Release",
"installRoot": "${projectDir}\\out\\install\\${name}",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"cmakeCommandArgs": "-DBUILD_DOCUMENTATION=True -DNO_RANDOM=False"
},
{
"name": "Linux-GCC-Debug-twice(Pascal)",
"generator": "Unix Makefiles",
"configurationType": "Debug",
"cmakeExecutable": "cmake",
"remoteCopySourcesExclusionList": [ ".vs", ".git", "out", "out2", "install", "x64", "docs" ],
"cmakeCommandArgs": "-DNO_RANDOM=False",
"buildCommandArgs": "-j -l 80",
"ctestCommandArgs": "",
"inheritEnvironments": [ "linux_c++_x64" ],
"remoteMachineName": "421015889;10.10.18.63 (username=talka, port=22, authentication=Password)",
"remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src",
"remoteBuildRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src/out2/Debug",
"remoteInstallRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src/out2",
"remoteCopySources": true,
"rsyncCommandArgs": "-t --delete --delete-excluded",
"remoteCopyBuildOutput": false,
"remoteCopySourcesMethod": "rsync",
"addressSanitizerEnabled": false
},
{
"name": "Linux-GCC-Debug-QUEEN(Turing)",
"generator": "Unix Makefiles",
"configurationType": "Debug",
"cmakeExecutable": "cmake",
"remoteCopySourcesExclusionList": [ ".vs", ".git", "out", "out2", "install", "x64", "docs" ],
"cmakeCommandArgs": "-DNO_RANDOM=False -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc",
"buildCommandArgs": "-j -l 80",
"ctestCommandArgs": "",
"inheritEnvironments": [ "linux_c++_x64" ],
"remoteMachineName": "1189209594;10.10.18.163 (username=talka, port=22, authentication=Password)",
"remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src",
"remoteBuildRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src/out2/Debug",
"remoteInstallRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src/out2",
"remoteCopySources": true,
"rsyncCommandArgs": "-t --delete --delete-excluded",
"remoteCopyBuildOutput": false,
"remoteCopySourcesMethod": "rsync",
"addressSanitizerEnabled": false
},
{
"name": "Linux-GCC-Release-QUEEN(Turing)",
"generator": "Unix Makefiles",
"configurationType": "Release",
"cmakeExecutable": "cmake",
"remoteCopySourcesExclusionList": [ ".vs", ".git", "out", "out2", "install", "x64", "docs" ],
"cmakeCommandArgs": "-DNO_RANDOM=False -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc",
"buildCommandArgs": "-j -l 80",
"ctestCommandArgs": "",
"inheritEnvironments": [ "linux_c++_x64" ],
"remoteMachineName": "1189209594;10.10.18.163 (username=talka, port=22, authentication=Password)",
"remoteCMakeListsRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src",
"remoteBuildRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src/out2/Release",
"remoteInstallRoot": "$HOME/.vs/${projectDirName}/${workspaceHash}/src/out2",
"remoteCopySources": true,
"rsyncCommandArgs": "-t --delete --delete-excluded",
"remoteCopyBuildOutput": false,
"remoteCopySourcesMethod": "rsync",
"addressSanitizerEnabled": false
}
]
}