aboutsummaryrefslogtreecommitdiff
path: root/src/zenovermind/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenovermind/xmake.lua')
-rw-r--r--src/zenovermind/xmake.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/zenovermind/xmake.lua b/src/zenovermind/xmake.lua
new file mode 100644
index 000000000..49d667f27
--- /dev/null
+++ b/src/zenovermind/xmake.lua
@@ -0,0 +1,10 @@
+-- Copyright Epic Games, Inc. All Rights Reserved.
+
+target('zenovermind')
+ set_kind("static")
+ set_group("libs")
+ add_headerfiles("**.h")
+ add_files("**.cpp")
+ add_includedirs("include", {public=true})
+ add_deps("zencore", "zenhttp", "zenutil")
+ add_packages("json11")