mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +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 */
|
/* UTF-8 */
|
||||||
#pragma code_page(65001)
|
#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
|
#ifdef LANGUAGE_DE_DE
|
||||||
#include "lang/de-DE.rc"
|
#include "lang/de-DE.rc"
|
||||||
#endif
|
#endif
|
||||||
|
@ -39,3 +43,4 @@
|
||||||
#ifdef LANGUAGE_ZH_TW
|
#ifdef LANGUAGE_ZH_TW
|
||||||
#include "lang/zh-TW.rc"
|
#include "lang/zh-TW.rc"
|
||||||
#endif
|
#endif
|
||||||
|
#endif /* DBG */
|
||||||
|
|
Loading…
Reference in a new issue