xmake-helloworld-runner/xmake.lua
2025-02-18 02:55:32 +08:00

8 lines
189 B
Lua

-- 定义项目名称
set_project("helloworld")
-- 定义目标
target("helloworld")
set_kind("binary") -- 目标类型为可执行文件
add_files("src/*.cpp") -- 添加源文件