aboutsummaryrefslogtreecommitdiff
path: root/zenhttp/xmake.lua
blob: 58de0eeada23808e3d81719b101c4cb611e02632 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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")