Build naming system
There are three configurations: Dx86, Rx86, Fx86;
They are named using YxZZ template, where
- Y – the letter that denotes the configuration;
- ZZ – two numbers denoting architecture.
There are three configurations:
- D – Debug; Compiler optimizations are disabled, runtime checks are enabled. All debugging code is enabled.
- R – Release; Compiler optimizations are enabled, runtime checks are reduced to default. Some, but not all, debugging code is disabled.
- F – Final; Same as Release, but all debugging code is disabled.
And one architecture:
- x86 – 32-bit build
Standard game archives are named as OpenTrespasser.YxZZ.rar
and intended for players.
Archives with debug symbols are named as Symbols.YxZZ.rar
(only needed for developers).