blob: f5c9c3c09a75ba01268ea92f22ab79886b10ae9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- Copyright Epic Games, Inc. All Rights Reserved.
target("zenserver-test")
set_kind("binary")
set_group("tests")
add_headerfiles("**.h")
add_files("*.cpp")
add_files("zenserver-test.cpp", {unity_ignored = true })
add_deps("zencore", "zenremotestore", "zenhttp")
add_deps("zenserver", {inherit=false})
add_packages("http_parser")
if has_config("zennomad") then
add_deps("zennomad")
end
if is_plat("macosx") then
add_ldflags("-framework CoreFoundation")
add_ldflags("-framework Security")
add_ldflags("-framework SystemConfiguration")
end
|