diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-07 15:01:59 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-07 15:01:59 +0200 |
commit | 8de6405288a79c3109524a319bdd749ad1f902fe (patch) | |
tree | 72cbc4acedd4ed0403b7dbed6c8f4ec4b0a02498 /modules/freetype/SCsub | |
parent | d6d8cb1a171b0aa74bc54e615e7c1e068af5a5d8 (diff) | |
download | redot-engine-8de6405288a79c3109524a319bdd749ad1f902fe.tar.gz |
UWP: Remove platform port, needs to be redone from scratch for 4.x
The UWP platform port was never ported to the Godot 4.0+ API,
and it's now accumulating bitrot as it doesn't compile, and thus
we no longer propagate platform changes in it.
So we finally remove to acknowledge this state. There's still some
interest in reviving the UWP port eventually, especially as support
for Direct3D 12 will soon be merged, but when that happens it will
be easiest to redo it from scratch.
Diffstat (limited to 'modules/freetype/SCsub')
-rw-r--r-- | modules/freetype/SCsub | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/freetype/SCsub b/modules/freetype/SCsub index 421f200f1a..2813eaecd5 100644 --- a/modules/freetype/SCsub +++ b/modules/freetype/SCsub @@ -61,12 +61,6 @@ if env["builtin_freetype"]: if env["brotli"]: env_freetype.Append(CPPDEFINES=["FT_CONFIG_OPTION_USE_BROTLI"]) - 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"']) - env_freetype.Prepend(CPPPATH=[thirdparty_dir + "/include"]) # Also needed in main env for scene/ env.Prepend(CPPPATH=[thirdparty_dir + "/include"]) |