blob: a6163e506d305e6105bb607019994df2a42058bb (
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("zenhttp-test")
set_kind("binary")
set_group("tests")
add_headerfiles("**.h")
add_files("*.cpp")
add_deps("zenhttp", "zencore")
add_packages("vcpkg::doctest")
if is_plat("macosx") then
add_ldflags("-framework CoreFoundation")
add_ldflags("-framework Security")
add_ldflags("-framework SystemConfiguration")
end
|