forked from TheSuperHackers/GeneralsGameCode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeSettings.json
More file actions
106 lines (106 loc) · 2.53 KB
/
Copy pathCMakeSettings.json
File metadata and controls
106 lines (106 loc) · 2.53 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"configurations": [
{
"name": "win32-debug",
"generator": "Visual Studio 17 2022",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\build\\win32-debug",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"variables": [
{
"name": "CMAKE_EXPORT_COMPILE_COMMANDS",
"value": "ON",
"type": "BOOL"
},
{
"name": "RTS_BUILD_OPTION_DEBUG",
"value": "ON",
"type": "BOOL"
}
]
},
{
"name": "win32",
"generator": "Visual Studio 17 2022",
"configurationType": "Release",
"buildRoot": "${projectDir}\\build\\win32",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"variables": [
{
"name": "CMAKE_EXPORT_COMPILE_COMMANDS",
"value": "ON",
"type": "BOOL"
},
{
"name": "RTS_FLAGS",
"value": "/W3",
"type": "STRING"
}
]
},
{
"name": "vc6",
"generator": "Ninja",
"configurationType": "Release",
"buildRoot": "${projectDir}\\build\\vc6",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"variables": [
{
"name": "CMAKE_EXPORT_COMPILE_COMMANDS",
"value": "ON",
"type": "BOOL"
},
{
"name": "CMAKE_BUILD_TYPE",
"value": "Release",
"type": "STRING"
},
{
"name": "RTS_FLAGS",
"value": "/W3",
"type": "STRING"
}
]
},
{
"name": "vc6-debug",
"generator": "Ninja",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\build\\vc6-debug",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"variables": [
{
"name": "CMAKE_EXPORT_COMPILE_COMMANDS",
"value": "ON",
"type": "BOOL"
},
{
"name": "CMAKE_BUILD_TYPE",
"value": "Debug",
"type": "STRING"
},
{
"name": "RTS_BUILD_OPTION_DEBUG",
"value": "ON",
"type": "BOOL"
}
]
}
]
}