aboutsummaryrefslogtreecommitdiff
path: root/zentest-appstub/xmake.lua
blob: d43b05028e4f814315d897d9045611fcec588638 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
-- Copyright Epic Games, Inc. All Rights Reserved.

target("zentest-appstub")
    set_kind("binary")
    add_headerfiles("**.h")
    add_files("*.cpp")

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