summaryrefslogtreecommitdiffstats
path: root/modules/msdfgen
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-03-12 10:26:55 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-03-13 09:12:50 +0200
commit0d02568ff8bd59cd9be9f7e09a444e9cf6689ae2 (patch)
tree122fe5b3e0f4ddb739602a0fbb218f7f27584920 /modules/msdfgen
parent22c20cea6e59a8a95585adb866c007a55c428806 (diff)
downloadredot-engine-0d02568ff8bd59cd9be9f7e09a444e9cf6689ae2.tar.gz
Update ICU and msdfgen.
Diffstat (limited to 'modules/msdfgen')
-rw-r--r--modules/msdfgen/SCsub3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/msdfgen/SCsub b/modules/msdfgen/SCsub
index 0c269bc7f4..f4316a74e7 100644
--- a/modules/msdfgen/SCsub
+++ b/modules/msdfgen/SCsub
@@ -20,8 +20,6 @@ if env["builtin_msdfgen"]:
"core/Projection.cpp",
"core/Scanline.cpp",
"core/Shape.cpp",
- "core/SignedDistance.cpp",
- "core/Vector2.cpp",
"core/contour-combiners.cpp",
"core/edge-coloring.cpp",
"core/edge-segments.cpp",
@@ -36,6 +34,7 @@ if env["builtin_msdfgen"]:
]
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
+ env_msdfgen.Append(CPPDEFINES=[("MSDFGEN_PUBLIC", "")])
env_msdfgen.Prepend(CPPPATH=["#thirdparty/freetype/include", "#thirdparty/msdfgen", "#thirdparty/nanosvg"])
lib = env_msdfgen.add_library("msdfgen_builtin", thirdparty_sources)