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

target("zenserver-test")
    set_kind("binary")
    add_headerfiles("**.h")
    add_files("*.cpp")
    add_deps("zencore", "zenutil", "zenhttp")
    add_deps("zenserver", {inherit=false})
    add_packages("vcpkg::http-parser", "vcpkg::mimalloc")

    if is_plat("macosx") then
        add_ldflags("-framework CoreFoundation")
        add_ldflags("-framework Security")
        add_ldflags("-framework SystemConfiguration")
    end