|
| 1 | +[options.platform] |
| 2 | +description = "Target platform" |
| 3 | +values = ["windows"] |
| 4 | +default = "" |
| 5 | + |
| 6 | +[options.target] |
| 7 | +description = "Compilation target" |
| 8 | +values = ["editor", "template_release", "template_debug"] |
| 9 | +default = "editor" |
| 10 | + |
| 11 | +[options.arch] |
| 12 | +description = "CPU architecture" |
| 13 | +values = ["auto", "x86_32", "x86_64", "arm32", "arm64", "rv64", "ppc32", "ppc64", "wasm32"] |
| 14 | +default = "auto" |
| 15 | + |
| 16 | +[options.dev_build] |
| 17 | +description = "Developer build" |
| 18 | +values = ["yes", "no"] |
| 19 | +default = "no" |
| 20 | + |
| 21 | +[options.optimize] |
| 22 | +description = "Optimization level" |
| 23 | +values = ["none", "custom", "debug", "speed", "speed_trace", "size"] |
| 24 | +default = "speed_trace" |
| 25 | + |
| 26 | +[options.debug_symbols] |
| 27 | +description = "Build with debugging symbols" |
| 28 | +values = ["yes", "no"] |
| 29 | +default = "no" |
| 30 | + |
| 31 | +[options.separate_debug_symbols] |
| 32 | +description = "Extract debugging symbols to a separate file" |
| 33 | +values = ["yes", "no"] |
| 34 | +default = "no" |
| 35 | + |
| 36 | +[options.lto] |
| 37 | +description = "Link-time optimization" |
| 38 | +values = ["none", "auto", "thin", "full"] |
| 39 | +default = "none" |
| 40 | + |
| 41 | +[options.production] |
| 42 | +description = "Set defaults to build Godot for use in production" |
| 43 | +values = ["yes", "no"] |
| 44 | +default = "no" |
| 45 | + |
| 46 | +[options.deprecated] |
| 47 | +description = "Enable compatibility code for deprecated and removed options" |
| 48 | +values = ["yes", "no"] |
| 49 | +default = "yes" |
| 50 | + |
| 51 | +[options.precision] |
| 52 | +description = "Set the floating-point precision level" |
| 53 | +values = ["single", "double"] |
| 54 | +default = "single" |
| 55 | + |
| 56 | +[options.minizip] |
| 57 | +description = "Enable ZIP archive support using minizip" |
| 58 | +values = ["yes", "no"] |
| 59 | +default = "yes" |
| 60 | + |
| 61 | +[options.brotli] |
| 62 | +description = "Enable Brotli for decompresson and WOFF2 fonts support" |
| 63 | +values = ["yes", "no"] |
| 64 | +default = "yes" |
| 65 | + |
| 66 | +[options.xaudio2] |
| 67 | +description = "Enable the XAudio2 audio driver" |
| 68 | +values = ["yes", "no"] |
| 69 | +default = "no" |
| 70 | + |
| 71 | +[options.vulkan] |
| 72 | +description = "Enable the vulkan rendering driver" |
| 73 | +values = ["yes", "no"] |
| 74 | +default = "yes" |
| 75 | + |
| 76 | +[options.opengl3] |
| 77 | +description = "Enable the OpenGL/GLES3 rendering driver" |
| 78 | +values = ["yes", "no"] |
| 79 | +default = "yes" |
| 80 | + |
| 81 | +[options.openxr] |
| 82 | +description = "Enable the OpenXR driver" |
| 83 | +values = ["yes", "no"] |
| 84 | +default = "yes" |
| 85 | + |
| 86 | +[options.use_volk] |
| 87 | +description = "Use the volk library to load the Vulkan loader dynamically" |
| 88 | +values = ["yes", "no"] |
| 89 | +default = "yes" |
| 90 | + |
| 91 | +[options.disable_exceptions] |
| 92 | +description = "Force disabling exception handling code" |
| 93 | +values = ["yes", "no"] |
| 94 | +default = "yes" |
| 95 | + |
| 96 | +[options.custom_modules] |
| 97 | +description = "A list of comma-separated directory paths containing custom modules to build." |
| 98 | +values = [] |
| 99 | +default = "" |
| 100 | + |
| 101 | +[options.custom_modules_recursive] |
| 102 | +description = "Detect custom modules recursively for each specified path." |
| 103 | +values = ["yes", "no"] |
| 104 | +default = "yes" |
| 105 | + |
| 106 | +[options.dev_mode] |
| 107 | +description = "Alias for dev options: verbose=yes warnings=extra werror=yes tests=yes" |
| 108 | +values = ["yes", "no"] |
| 109 | +default = "no" |
| 110 | + |
| 111 | +[options.tests] |
| 112 | +description = "Build the unit tests" |
| 113 | +values = ["yes", "no"] |
| 114 | +default = "no" |
| 115 | + |
| 116 | +[options.fast_unsafe] |
| 117 | +description = "Enable unsafe options for faster rebuilds" |
| 118 | +values = ["yes", "no"] |
| 119 | +default = "no" |
| 120 | + |
| 121 | +[options.compiledb] |
| 122 | +description = "Generate compilation DB (`compile_commands.json`) for external tools" |
| 123 | +values = ["yes", "no"] |
| 124 | +default = "no" |
| 125 | + |
| 126 | +[options.verbose] |
| 127 | +description = "Enable verbose output for the compilation" |
| 128 | +values = ["yes", "no"] |
| 129 | +default = "no" |
| 130 | + |
| 131 | +[options.progress] |
| 132 | +description = "Show a progress indicator during compilation" |
| 133 | +values = ["yes", "no"] |
| 134 | +default = "yes" |
| 135 | + |
| 136 | +[options.warnings] |
| 137 | +description = "Level of compilation warnings" |
| 138 | +values = ["extra", "all", "moderate", "no"] |
| 139 | +default = "all" |
| 140 | + |
| 141 | +[options.werror] |
| 142 | +description = "Treat compiler warnings as errors" |
| 143 | +values = ["yes", "no"] |
| 144 | +default = "no" |
| 145 | + |
| 146 | +[options.extra_suffix] |
| 147 | +description = "Custom extra suffix added to the base filename of all generated binary files" |
| 148 | +values = [] |
| 149 | +default = "" |
| 150 | + |
| 151 | +[options.vsproj] |
| 152 | +description = "Generate a Visual Studio solution" |
| 153 | +values = ["yes", "no"] |
| 154 | +default = "no" |
| 155 | + |
| 156 | +[options.vsproj_name] |
| 157 | +description = "Name of the Visual Studio solution" |
| 158 | +values = [] |
| 159 | +default = "godot" |
| 160 | + |
| 161 | +[options.disable_3d] |
| 162 | +description = "Disable 3D nodes for a smaller executable" |
| 163 | +values = ["yes", "no"] |
| 164 | +default = "no" |
| 165 | + |
| 166 | +[options.disable_advanced_gui] |
| 167 | +description = "Disable advanced GUI nodes and behaviors" |
| 168 | +values = ["yes", "no"] |
| 169 | +default = "no" |
| 170 | + |
| 171 | +[options.build_profile] |
| 172 | +description = "Path to a file containing a feature build profile" |
| 173 | +values = [] |
| 174 | +default = "" |
| 175 | + |
| 176 | +[options.modules_enabled_by_default] |
| 177 | +description = "If no, disable all modules except ones explicitly enabled" |
| 178 | +values = ["yes", "no"] |
| 179 | +default = "yes" |
| 180 | + |
| 181 | +[options.no_editor_splash] |
| 182 | +description = "Don't use the custom splash screen for the editor" |
| 183 | +values = ["yes", "no"] |
| 184 | +default = "yes" |
| 185 | + |
| 186 | +[options.system_certs_path] |
| 187 | +description = "Use this path as TLS certificates default for editor and Linux/BSD export templates (for package maintainers)" |
| 188 | +values = [] |
| 189 | +default = "" |
| 190 | + |
| 191 | +[options.use_precise_math_checks] |
| 192 | +description = "Math checks use very precise epsilon (debug option)" |
| 193 | +values = ["yes", "no"] |
| 194 | +default = "no" |
| 195 | + |
| 196 | +[options.scu_build] |
| 197 | +description = "Use single compilation unit build" |
| 198 | +values = ["yes", "no"] |
| 199 | +default = "no" |
| 200 | + |
| 201 | +[options.scu_limit] |
| 202 | +description = "Max includes per SCU file when using scu_build (determines RAM use)" |
| 203 | +values = [] |
| 204 | +default = "0" |
0 commit comments