forked from TwinFan/LiveTraffic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeSettings.json
70 lines (70 loc) · 2.7 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
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\build-win\\${name}",
"installRoot": "${projectDir}\\build-win\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"variables": [
{
"name": "CMAKE_CXX_FLAGS",
"value": "/DWIN32 /D_WINDOWS /DWIN32_LEAN_AND_MEAN /D_CRT_SECURE_NO_WARNINGS /GS- /Gd /Gy- /Zc:wchar_t /Zc:forScope /Zc:inline /Zc:__cplusplus /W4 /EHsc /fp:precise /diagnostics:column",
"type": "STRING"
},
{
"name": "CMAKE_CXX_FLAGS_DEBUG",
"value": "/MDd /Od /RTC1 /Zi /DDEBUG",
"type": "STRING"
},
{
"name": "CMAKE_MODULE_LINKER_FLAGS",
"value": "/machine:x64",
"type": "STRING"
},
{
"name": "CMAKE_MODULE_LINKER_FLAGS_DEBUG",
"value": "/debug /INCREMENTAL:NO",
"type": "STRING"
}
]
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\build-win\\${name}",
"installRoot": "${projectDir}\\build-win\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "CMAKE_CXX_FLAGS",
"value": "/DWIN32 /D_WINDOWS /DWIN32_LEAN_AND_MEAN /D_CRT_SECURE_NO_WARNINGS /GS- /Gd /Gy- /Zc:wchar_t /Zc:forScope /Zc:inline /Zc:__cplusplus /W4 /EHsc /fp:precise /diagnostics:column",
"type": "STRING"
},
{
"name": "CMAKE_CXX_FLAGS_RELWITHDEBINFO",
"value": "/MD /Zi /GL- /O2 /DNDEBUG",
"type": "STRING"
},
{
"name": "CMAKE_MODULE_LINKER_FLAGS",
"value": "/machine:x64",
"type": "STRING"
},
{
"name": "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO",
"value": "/debug /INCREMENTAL:NO",
"type": "STRING"
}
]
}
]
}