This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathxbuild-windows-64.ini
55 lines (47 loc) · 1.67 KB
/
xbuild-windows-64.ini
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
# Runtime variables for build
[Hot]
reload = "on" #enables or disables hot reload
[Compiler]
build_kind="danger" # danger, release, debug, or diagnostic
cc="mingw"
# set the compiler to gcc, visual studio compiler, or tiny c compiler
# valid values are gcc, vcc, tcc, respectively
gc="orc" # arc or orc, orc is needed for async / await cycles
# with nim 3b963a81, getting a crash with orc and useMalloc
useMalloc="off" # off: use nim's default, (TLSF) allocator, on: use C memory primitives (malloc, free, realloc)
incremental="off" # waiting for nim compiler to implement and fix {.pure.}
[Dir]
# godot project directory
app="app"
# your components that hot reload
comps="components"
# location of the godot api, move to parent directory to make it shareable
deps="deps"
deps_godot="godot"
[App]
dll="_dlls"
gdns="_gdns"
gdnlib="_gdnlib"
tscn="_tscn"
[Godot]
src=r"C:\godot\geekrelief_godot"
base_branch="3.2"
build_branch="3.2_custom"
merge_branches="3.2_script_data_error, 3.2_filter_import"
platform="windows"
bits="64"
bin=r"/home/derekdai/Projects/godot/bin/godot.x11.opt.tools.64"
tools_debug_bin=r"/home/derekdai/Projects/godot/bin/godot.x11.opt.tools.64"
tools_release_bin=r"/home/derekdai/Projects/godot/bin/godot.x11.opt.tools.64"
[Build]
cwatch_interval = 300 #milliseconds, interval of nim file time checking
[GCC]
# strip: if on, compiles with -s like gcc's strip
# reduce the size of dlls, else ignore
strip="on"
# passes flto to compiler https://gcc.gnu.org/wiki/LinkTimeOptimization
# benchmark with release or danger
flto="off" #very slow to compile, not recommended with hot reloading
[VCC]
# specifies directory for pdb files, by default vcc puts them with the dlls
pdbdir="vcc_pdb"