aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenhttp/xmake.lua')
-rw-r--r--src/zenhttp/xmake.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/zenhttp/xmake.lua b/src/zenhttp/xmake.lua
new file mode 100644
index 000000000..b0dbdbc79
--- /dev/null
+++ b/src/zenhttp/xmake.lua
@@ -0,0 +1,14 @@
+-- Copyright Epic Games, Inc. All Rights Reserved.
+
+target('zenhttp')
+ set_kind("static")
+ add_headerfiles("**.h")
+ add_files("**.cpp")
+ add_files("httpsys.cpp", {unity_ignored=true})
+ add_includedirs("include", {public=true})
+ add_deps("zencore")
+ add_packages(
+ "vcpkg::gsl-lite",
+ "vcpkg::http-parser"
+ )
+ add_options("httpsys")