From 09a3ad64bb655f818533560d8cbbaceb63fe6b7e Mon Sep 17 00:00:00 2001 From: Saikari Date: Sat, 17 Jan 2026 05:40:05 +0300 Subject: Fixup --- core/src/utf8proc/xmake.lua | 5 +++++ core/src/utf8proc/xmake.sh | 9 +++++++++ core/src/xmake/xmake.sh | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 core/src/utf8proc/xmake.lua create mode 100644 core/src/utf8proc/xmake.sh (limited to 'core/src') 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" + diff --git a/core/src/xmake/xmake.sh b/core/src/xmake/xmake.sh index 291001306..11f33ab25 100755 --- a/core/src/xmake/xmake.sh +++ b/core/src/xmake/xmake.sh @@ -22,7 +22,7 @@ target "xmake" fi fi else - local libs="lua_cjson lz4 sv tbox" + local libs="lua_cjson lz4 sv tbox utf8proc" for lib in $libs; do add_deps "$lib" done -- cgit v1.3.1