mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[GETUNAME] Build only english on DBG builds (#5670)
This massively cuts down build time on MSVC builds. Co-authored-by: Stanislav Motylkov <x86corez@gmail.com>
This commit is contained in:
parent
a1ee35bdb2
commit
4459b4f42b
1 changed files with 5 additions and 0 deletions
|
@ -9,6 +9,10 @@
|
|||
/* UTF-8 */
|
||||
#pragma code_page(65001)
|
||||
|
||||
/* Only use english on debug builds to reduce compile time */
|
||||
#if DBG
|
||||
#include "lang/en-US.rc"
|
||||
#else
|
||||
#ifdef LANGUAGE_DE_DE
|
||||
#include "lang/de-DE.rc"
|
||||
#endif
|
||||
|
@ -39,3 +43,4 @@
|
|||
#ifdef LANGUAGE_ZH_TW
|
||||
#include "lang/zh-TW.rc"
|
||||
#endif
|
||||
#endif /* DBG */
|
||||
|
|
Loading…
Reference in a new issue