diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -60,19 +60,19 @@ end add_defines("USE_SENTRY=1") add_defines("ZEN_USE_MIMALLOC=1") -option("vfs") - set_showmenu(true) - set_description("Enable VFS functionality") - add_defines("ZEN_WITH_VFS") -option_end() - if is_os("windows") then - option("httpsys") - set_default(true) - set_showmenu(true) - set_description("Enable http.sys server") - add_defines("ZEN_WITH_HTTPSYS") - option_end() + option("vfs") + set_showmenu(true) + set_description("Enable VFS functionality") + add_defines("ZEN_WITH_VFS") + option_end() + + option("httpsys") + set_default(true) + set_showmenu(true) + set_description("Enable http.sys server") + add_defines("ZEN_WITH_HTTPSYS") + option_end() end set_warnings("allextra", "error") |