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

target('zencompute')
    set_kind("static")
    set_group("libs")
    add_headerfiles("**.h")
    add_files("**.cpp")
    add_includedirs("include", {public=true})
    add_includedirs(".", {private=true})
    add_deps("zencore", "zenstore", "zenutil", "zennet", "zenhttp")
    add_packages("json11")

    if is_os("macosx") then
        add_cxxflags("-Wno-deprecated-declarations")
    end

    if is_plat("windows") then
        add_syslinks("Userenv")
    end