aboutsummaryrefslogtreecommitdiff
path: root/zenutil/xmake.lua
blob: e3cbec94e7d706a3ea002764b736244ae0b60fe4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
target('zenutil')
    set_kind("static")
    add_files("**.cpp")
    add_includedirs("include", {public=true})
    add_deps("zencore")
    add_packages("vcpkg::spdlog")

    if is_os("linux") then
        add_links("rt")
    end