diff options
| -rw-r--r-- | xmake.lua | 1 | ||||
| -rw-r--r-- | zenhttp/xmake.lua | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -41,6 +41,7 @@ option("vfs") option_end() option("httpsys") + set_default(true) set_showmenu(true) set_description("Enable http.sys server") add_defines("ZEN_WITH_HTTPSYS") diff --git a/zenhttp/xmake.lua b/zenhttp/xmake.lua index a1455f46c..fff4fb526 100644 --- a/zenhttp/xmake.lua +++ b/zenhttp/xmake.lua @@ -3,4 +3,5 @@ target('zenhttp') add_files("**.cpp") add_includedirs("include", {public=true}) add_deps("zencore") - add_packages("vcpkg::gsl-lite")
\ No newline at end of file + add_packages("vcpkg::gsl-lite") + add_options("httpsys")
\ No newline at end of file |