zengine/game/zworld/xmake.lua

11 lines
306 B
Lua
Raw Normal View History

2024-07-20 18:04:19 +08:00
target("zworld")
set_kind("shared")
set_group("Games")
add_deps("engine", "editor", "vulkan", {public = true})
add_files("src/*.cpp")
add_headerfiles("src/*.h")
target("zworld-editor")
set_kind("binary")
set_group("Games")
add_deps("zworld")
add_files("editor/main.cpp")