aboutsummaryrefslogtreecommitdiff
path: root/src/zencompute/xmake.lua
blob: 6c2db3a8d5a92a9cb62eb18584260c19b44bb62e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- 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_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