diff options
| author | ruki <[email protected]> | 2025-07-21 23:44:53 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-07-21 23:44:53 +0800 |
| commit | 18a4159b5b05de5e65bdbd3c2ae8b8fc6e97a146 (patch) | |
| tree | 9a85e81b771b120ea8c75c65e3b7248d5fd10524 /core/src/xmake/xmake.lua | |
| parent | 6694d5b11dd4740d1ff8a401f43574e85efd2076 (diff) | |
rename buildir
Diffstat (limited to 'core/src/xmake/xmake.lua')
| -rw-r--r-- | core/src/xmake/xmake.lua | 6 |
1 files changed, 3 insertions, 3 deletions
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") |
