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