上传文件至 /

This commit is contained in:
KeqingMoe 2025-03-21 03:05:23 +00:00
parent 6ac189e71e
commit 1bd7721cb7

28
xmake.lua Normal file
View File

@ -0,0 +1,28 @@
add_rules("mode.debug", "mode.release")
add_rules("plugin.compile_commands.autoupdate")
-- set_toolchains("clang")
-- set_runtimes("c++_static")
set_languages("c++26")
set_warnings("all")
set_warnings("error")
target("str")
set_kind("static")
add_files("module/**.cppm", { public = true })
-- target("test")
-- set_kind("binary")
-- add_deps("str")
-- add_files("test/test.cpp")
target("test-utf")
set_kind("binary")
add_deps("str")
add_files("test/utf.cpp")
target("test-string")
set_kind("binary")
add_deps("str")
add_files("test/string.cpp")