From 18a4159b5b05de5e65bdbd3c2ae8b8fc6e97a146 Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 21 Jul 2025 23:44:53 +0800 Subject: rename buildir --- core/src/xmake/xmake.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/src/xmake/xmake.lua') diff --git a/core/src/xmake/xmake.lua b/core/src/xmake/xmake.lua index ac943fb9e..0883d071b 100644 --- a/core/src/xmake/xmake.lua +++ b/core/src/xmake/xmake.lua @@ -27,19 +27,19 @@ target("xmake") end -- set the auto-generated config.h - set_configdir("$(buildir)/$(plat)/$(arch)/$(mode)") + set_configdir("$(builddir)/$(plat)/$(arch)/$(mode)") add_configfiles("xmake.config.h.in") -- add includes directory add_includedirs("..", {interface = true}) - add_includedirs("$(buildir)/$(plat)/$(arch)/$(mode)", {public = true}) + add_includedirs("$(builddir)/$(plat)/$(arch)/$(mode)", {public = true}) add_includedirs("../xxhash") add_includedirs("$(projectdir)/../xmake/scripts/module") -- add header files add_headerfiles("../(xmake/*.h)") add_headerfiles("../(xmake/prefix/*.h)") - add_headerfiles("$(buildir)/$(plat)/$(arch)/$(mode)/xmake.config.h", {prefixdir = "xmake"}) + add_headerfiles("$(builddir)/$(plat)/$(arch)/$(mode)/xmake.config.h", {prefixdir = "xmake"}) -- add the common source files add_files("**.c|winos/*.c") -- cgit v1.3.1