aboutsummaryrefslogtreecommitdiff
path: root/src/zentrack/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/zentrack/xmake.lua')
-rw-r--r--src/zentrack/xmake.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/zentrack/xmake.lua b/src/zentrack/xmake.lua
new file mode 100644
index 000000000..70a83f787
--- /dev/null
+++ b/src/zentrack/xmake.lua
@@ -0,0 +1,13 @@
+-- Copyright Epic Games, Inc. All Rights Reserved.
+
+target('zentrack')
+ set_kind("shared")
+ set_group("libs")
+ add_headerfiles("**.h")
+ add_files("**.cpp")
+ add_includedirs("include", {public=true})
+ add_deps("zencore")
+ add_packages("vcpkg::spdlog")
+ if is_os("windows") then
+ add_links("detours")
+ end