add_requires( "vcpkg::asio", "vcpkg::cpr", "vcpkg::curl", "vcpkg::cxxopts", "vcpkg::doctest", "vcpkg::fmt", "vcpkg::gsl-lite", "vcpkg::http-parser", "vcpkg::json11", "vcpkg::lua", "vcpkg::lz4", "vcpkg::mimalloc", "vcpkg::openssl", "vcpkg::robin-map", "vcpkg::sentry-native", "vcpkg::sol2", "vcpkg::spdlog", "vcpkg::xxhash", "vcpkg::zlib", "vcpkg::zstd" ) add_rules("mode.debug", "mode.release") if is_mode("release") then set_optimize("smallest") if is_plat("windows") then add_ldflags("/LTCG") end end if is_mode("debug") then add_defines("DEBUG") end if is_mode("debug") then add_defines("ZEN_WITH_TESTS=1") else add_defines("ZEN_WITH_TESTS=0") end if is_os("windows") then add_defines( "_CRT_SECURE_NO_WARNINGS", "_UNICODE", "UNICODE", "_CONSOLE", "NOMINMAX", -- stop Windows SDK defining 'min' and 'max' "NOGDI", -- otherwise Windows.h defines 'GetObject' "WIN32_LEAN_AND_MEAN", -- cut down Windows.h "_WIN32_WINNT=0x0A00" ) -- add_ldflags("/MAP") end if is_os("linux") then add_cxxflags("-Wno-unused-value") add_cxxflags("-Wno-strict-aliasing") add_cxxflags("-Wno-implicit-fallthrough") add_cxxflags("-Wno-missing-field-initializers") end -- Turn use of undefined cpp macros into errors if is_os("windows") then add_cxxflags("/we4668") else add_cxxflags("-Wundef") end function add_define_by_config(define, config_name) local value = has_config(config_name) and 1 or 0 add_defines(define.."="..value) end option("zensentry") set_default(true) set_showmenu(true) set_description("Enables Sentry support in Zen") option_end() add_define_by_config("USE_SENTRY", "zensentry") option("zenmimalloc") set_default(true) set_showmenu(true) set_description("Use MiMalloc as Zen's allocator") option_end() add_define_by_config("ZEN_USE_MIMALLOC", "zenmimalloc") if is_os("windows") then option("vfs") set_showmenu(true) set_description("Enable VFS functionality") option_end() add_define_by_config("ZEN_WITH_VFS", "vfs") option("httpsys") set_default(true) set_showmenu(true) set_description("Enable http.sys server") option_end() add_define_by_config("ZEN_WITH_HTTPSYS", "httpsys") end option("compute") set_default(is_os("windows")) set_showmenu(true) set_description("Enable compute services endpoint") option_end() add_define_by_config("ZEN_WITH_COMPUTE_SERVICES", "compute") option("zenmesh") set_default(false) set_showmenu(true) set_description("Enables Zen's mesh feature") option_end() add_define_by_config("ZEN_ENABLE_MESH", "zenmesh") option("zentrace") set_default(false) set_showmenu(true) set_description("Enable UE's Trace support") option_end() add_define_by_config("ZEN_WITH_TRACE", "zentrace") set_warnings("allextra", "error") set_languages("cxx20") -- always generate debug information set_symbols("debug") includes("zencore", "zencore-test") includes("zenhttp") includes("zenstore", "zenstore-test") includes("zenutil") includes("zenserver", "zenserver-test") includes("zen") task("bundle") on_run(function() import("detect.tools.find_zip") import("detect.tools.find_7z") -- copy files local dirs = { binaries = "./build/windows/x64/release", bundles = "./build/bundles", bundle = "./build/bundles/zenzerver-win64" } local files = { dirs.binaries .. "/zenserver.exe", dirs.binaries .. "/zenserver.pdb", "./vcpkg_installed/x64-windows-static/tools/sentry-native/crashpad_handler.exe" } os.mkdir(dirs.bundles) os.mkdir(dirs.bundle) for _,file in ipairs(files) do printf("copy '%s' -> '%s'\n", file, dirs.bundle) os.cp(file, dirs.bundle) end -- create archive local bundle_name = "zenserver-win64.zip" local zip_cmd = find_7z() assert(zip_cmd) local zip_args = {} table.insert(zip_args, "a") table.insert(zip_args, dirs.bundles .. "/" .. bundle_name) table.insert(zip_args, dirs.bundle .. "/*.*") printf("creating bundle '%s'...", dirs.bundles .. "/" .. bundle_name) os.runv(zip_cmd, zip_args) os.rm(dirs.bundle) printf(" Ok!") end) set_menu { usage = "xmake bundle", description = "Create zip bundle from binaries", options = {} }