diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-11-04 22:01:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-04 22:01:27 +0100 |
commit | 91d158afb233b1cd273a880609be6a33e9f11458 (patch) | |
tree | 5710df151504106f3148c2c9f419509ed8852b02 /modules | |
parent | 11076021544cf18687df4f98a37b72d7b3117cf4 (diff) | |
parent | f17d83e75889ae341a4f762b47786e4ec86e274e (diff) |
Merge pull request #23477 from Faless/uwp_fix_build
Fix UWP build.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/freetype/SCsub | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/freetype/SCsub b/modules/freetype/SCsub index 7ca40c1b8b..3e2068b8db 100644 --- a/modules/freetype/SCsub +++ b/modules/freetype/SCsub @@ -59,6 +59,8 @@ if env['builtin_freetype']: if env['platform'] == 'uwp': # Include header for UWP to fix build issues env_freetype.Append(CCFLAGS=['/FI', '"modules/freetype/uwpdef.h"']) + # Globally too, as freetype is used in scene (see bottom) + env.Append(CCFLAGS=['/FI', '"modules/freetype/uwpdef.h"']) sfnt = thirdparty_dir + 'src/sfnt/sfnt.c' if env['platform'] == 'javascript': |