diff options
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" + |
