aboutsummaryrefslogtreecommitdiff
path: root/src/zen-test/xmake.lua
blob: e3a3757a2c9788d1755946cada4471364c1142fe (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("zen-test")
    set_kind("binary")
    set_group("tests")
    add_headerfiles("**.h")
    add_files("*.cpp")
    add_files("zen-test.cpp", {unity_ignored  = true })
    add_deps("zencore", "zenhttp", "zenutil")
    add_deps("zen", {inherit=false})
    add_deps("zenserver", {inherit=false})
    add_deps("zentest-appstub", {inherit=false})
    add_packages("llhttp")

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