zengine/game/zworld/xmake.lua

9 lines
289 B
Lua
Raw Normal View History

2024-07-31 10:48:28 +08:00
game_instance("zworld", "src/zworld.h")
2024-07-20 18:04:19 +08:00
target("zworld")
add_files("src/*.cpp")
add_headerfiles("src/*.h")
2024-10-22 21:52:43 +08:00
add_dependency("engine", "editor", "vulkan", {public = true})
2024-07-20 18:04:19 +08:00
target("zworld-editor")
2024-08-17 18:01:21 +08:00
add_files("editor/*.cpp")
2024-08-24 18:01:53 +08:00
add_headerfiles("editor/*.h")
add_deps("zlib")