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

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