aboutsummaryrefslogtreecommitdiff
path: root/src/zennet-test/xmake.lua
blob: c9e3f7a077cef3864f40c2a499eb83f690009ee3 (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("zennet-test")
    set_kind("binary")
    set_group("tests")
    add_headerfiles("**.h")
    add_files("*.cpp")
    add_deps("zennet")
    add_deps("doctest")

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