diff options
| author | Saikari <[email protected]> | 2026-01-17 05:40:05 +0300 |
|---|---|---|
| committer | Saikari <[email protected]> | 2026-01-17 05:40:05 +0300 |
| commit | 09a3ad64bb655f818533560d8cbbaceb63fe6b7e (patch) | |
| tree | 7b860477c2b8a2b56afa3356a43c39e7c58bbe3f /core/src/utf8proc | |
| parent | c570d73fd4e147b49d7bc302e62eee1529255e39 (diff) | |
Fixup
Diffstat (limited to 'core/src/utf8proc')
| -rw-r--r-- | core/src/utf8proc/xmake.lua | 5 | ||||
| -rw-r--r-- | core/src/utf8proc/xmake.sh | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/core/src/utf8proc/xmake.lua b/core/src/utf8proc/xmake.lua new file mode 100644 index 000000000..17d84f505 --- /dev/null +++ b/core/src/utf8proc/xmake.lua @@ -0,0 +1,5 @@ +target("utf8proc") + set_kind("static") + add_defines("UTF8PROC_STATIC") + add_includedirs("utf8proc", {public = true}) + add_files("utf8proc/utf8proc.c") diff --git a/core/src/utf8proc/xmake.sh b/core/src/utf8proc/xmake.sh new file mode 100644 index 000000000..56e0b0db6 --- /dev/null +++ b/core/src/utf8proc/xmake.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +target "utf8proc" + set_kind "static" + set_default false + add_defines "UTF8PROC_STATIC" + add_includedirs "utf8proc" "{public}" + add_files "utf8proc/utf8proc.c" + |
