-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreset.deps.json
103 lines (103 loc) · 3.33 KB
/
preset.deps.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 28,
"patch": 0
},
"configurePresets": [
{
"hidden": true,
"name": "flatbuffers",
"cacheVariables": {
"FLATBUFFERS_BUILD_FLATHASH": false,
"FLATBUFFERS_BUILD_SHAREDLIB": false,
"FLATBUFFERS_BUILD_TESTS": false,
"FLATBUFFERS_INSTALL": false,
"FLATBUFFERS_BUILD_FLATC": false
}
},
{
"hidden": true,
"name": "godot-cpp",
"description": "base profile for godot-cpp and dependencies",
"generator": "Ninja",
"cacheVariables": {
"GODOT_EXECUTABLE": "C:\\godot\\src\\godot\\bin\\godot.windows.editor.x86_64.console.exe",
"GODOT_CPP_GIT_URL": "https://github.com/enetheru/godot-cpp.git",
"GODOT_CPP_GIT_TAG": "godot-4.3-stable"
}
},
{
"hidden": true,
"name": "ucrt64-gcc",
"vendor": {
"jetbrains.com/clion": {
"enablePythonIntegration": true,
"toolchain": "MSYS2-ucrt64-gcc"
}
}
},
{
"hidden": true,
"name": "clang64-llvm",
"vendor": {
"jetbrains.com/clion": {
"enablePythonIntegration": true,
"toolchain": "MSYS2-clang64-llvm"
}
}
},
{
"name": "editor",
"hidden": true,
"inherits": ["godot-cpp"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"GODOT_CPP_TOOLS_ENABLED": true,
"GODOT_ENABLE_HOT_RELOAD": true,
"GODOT_CPP_WARNING_AS_ERROR": false,
"GODOT_DISABLE_EXCEPTIONS": false
}
},
{
"name": "dev_build",
"hidden": true,
"inherits": "godot-cpp",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"GODOT_CPP_TOOLS_ENABLED": true,
"GODOT_ENABLE_HOT_RELOAD": true,
"GODOT_CPP_WARNING_AS_ERROR": true,
"GODOT_DISABLE_EXCEPTIONS": false,
"GODOT_CPP_DEV_BUILD": true,
"GODOT_CPP_OPTIMISATION_MODE": "debug"
}
},
{
"name": "template_release",
"hidden": true,
"inherits": "godot-cpp",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"GODOT_CPP_OPTIMISATION_MODE": "speed",
"GODOT_CPP_TOOLS_ENABLED": false,
"GODOT_CPP_WARNING_AS_ERROR": false,
"GODOT_ENABLE_HOT_RELOAD": false
}
},
{
"name": "template_debug",
"hidden": true,
"inherits": "godot-cpp",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"GODOT_CPP_OPTIMISATION_MODE": "speed",
"GODOT_CPP_TOOLS_ENABLED": false,
"GODOT_CPP_WARNING_AS_ERROR": false,
"GODOT_ENABLE_HOT_RELOAD": false,
"GODOT_DISABLE_EXCEPTIONS": false
}
}
]
}