-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCMakePresets.json
More file actions
53 lines (53 loc) · 1.42 KB
/
CMakePresets.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"version": 2,
"configurePresets": [
{
"name": "x64-Unity-Release",
"displayName": "x64-Unity-Release",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/x64-Release-Unity",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_CXX_FLAGS": "-w",
"BUILD_LIB_TYPE": "dynamic",
"RUNTIME_LIB_TYPE": "MT"
}
},
{
"name": "x64-Unreal-Release",
"displayName": "x64-Unreal-Release",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/x64-Release-Unreal",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_CXX_FLAGS": "-w",
"BUILD_LIB_TYPE": "static",
"RUNTIME_LIB_TYPE": "MD"
}
},
{
"name": "x64-Unity-Debug",
"displayName": "x64-Unity-Debug",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/x64-Debug-Unity",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-w",
"BUILD_LIB_TYPE": "dynamic",
"RUNTIME_LIB_TYPE": "MD"
}
},
{
"name": "x64-Unreal-Debug",
"displayName": "x64-Unreal-Debug",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/x64-Debug-Unreal",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-w",
"BUILD_LIB_TYPE": "static",
"RUNTIME_LIB_TYPE": "MD"
}
}
]
}