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

target('zenhttp')
    set_kind("static")
    add_headerfiles("**.h")
    add_files("**.cpp")
    add_files("httpsys.cpp", {unity_ignored=true})
    add_includedirs("include", {public=true})
    add_deps("zencore")
    add_packages(
        "vcpkg::gsl-lite",
        "vcpkg::http-parser"
    )
    add_options("httpsys")