blob: e8f87b668cbda4e1577b961ee4024ae81662797f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
-- Copyright Epic Games, Inc. All Rights Reserved.
target('zenhttp')
set_kind("static")
set_group("libs")
add_headerfiles("**.h")
add_files("**.cpp")
add_files("servers/httpsys.cpp", {unity_ignored=true})
add_files("servers/wshttpsys.cpp", {unity_ignored=true})
add_includedirs("include", {public=true})
add_deps("zencore", "zentelemetry", "transport-sdk", "asio", "cpr")
add_packages("http_parser", "json11")
add_options("httpsys")
if is_plat("linux") then
add_syslinks("dl") -- TODO: is libdl needed?
end
|