aboutsummaryrefslogtreecommitdiff
path: root/src/zenstore/xmake.lua
blob: 94c2b51caa11e05376fca9a69015d04c880c79e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- Copyright Epic Games, Inc. All Rights Reserved.

target('zenstore')
    set_kind("static")
    set_group("libs")
    add_headerfiles("**.h")
    add_files("**.cpp")
    add_includedirs("include", {public=true})
    add_deps("zencore", "zentelemetry", "zenutil")
    if is_plat("windows") then
        add_deps("zenvfs")
    else
        add_includedirs("$(projectdir)/src/zenvfs/include", {public=true})
    end
    add_deps("robin-map")
    add_packages("eastl", {public=true});