Files
workflow/tutorial/tutorial-16-graceful_restart/xmake.lua
2022-12-10 20:37:42 +08:00

8 lines
174 B
Lua

target("bootstrap")
set_kind("binary")
add_files("bootstrap.c")
target("bootstrap_server")
set_kind("binary")
add_files("server.cc")
add_deps("workflow")