diff options
| author | Martin Ridgers <[email protected]> | 2021-11-02 15:02:46 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-11-02 15:29:02 +0100 |
| commit | 3e68f1763b74db330abf7fee320e724b4b224aea (patch) | |
| tree | 23871edcf4e2cbddbe59c5fd30c6d7c66bc12636 /zenhttp/xmake.lua | |
| parent | __debugbreak() -> ZEN_DEBUG_BREAK() (diff) | |
| download | zen-3e68f1763b74db330abf7fee320e724b4b224aea.tar.xz zen-3e68f1763b74db330abf7fee320e724b4b224aea.zip | |
Fixed http-parser linker error
Diffstat (limited to 'zenhttp/xmake.lua')
| -rw-r--r-- | zenhttp/xmake.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/zenhttp/xmake.lua b/zenhttp/xmake.lua index fff4fb526..a94069c17 100644 --- a/zenhttp/xmake.lua +++ b/zenhttp/xmake.lua @@ -3,5 +3,8 @@ target('zenhttp') add_files("**.cpp") add_includedirs("include", {public=true}) add_deps("zencore") - add_packages("vcpkg::gsl-lite") + add_packages( + "vcpkg::gsl-lite", + "vcpkg::http-parser" + ) add_options("httpsys")
\ No newline at end of file |