aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2022-03-28 09:51:44 +0200
committerPer Larsson <[email protected]>2022-03-28 09:51:44 +0200
commitbf2fc6144d43a6ea65f1f39346aa822ed8b2be19 (patch)
tree1df2338836b5dbd5c3b2f3ee7bcd0678de6375c8
parentMerge branch 'main' into ddcref (diff)
parentMerge branch 'main' of https://github.com/EpicGames/zen (diff)
downloadzen-bf2fc6144d43a6ea65f1f39346aa822ed8b2be19.tar.xz
zen-bf2fc6144d43a6ea65f1f39346aa822ed8b2be19.zip
Merge branch 'main' into ddcref
-rw-r--r--xmake.lua1
-rw-r--r--zentest-appstub/xmake.lua12
2 files changed, 13 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index 1abe87642..5ddcf7ce8 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -158,6 +158,7 @@ includes("zenstore", "zenstore-test")
includes("zenutil")
includes("zenserver", "zenserver-test")
includes("zen")
+includes("zentest-appstub")
task("bundle")
set_menu {
diff --git a/zentest-appstub/xmake.lua b/zentest-appstub/xmake.lua
new file mode 100644
index 000000000..d43b05028
--- /dev/null
+++ b/zentest-appstub/xmake.lua
@@ -0,0 +1,12 @@
+-- Copyright Epic Games, Inc. All Rights Reserved.
+
+target("zentest-appstub")
+ set_kind("binary")
+ add_headerfiles("**.h")
+ add_files("*.cpp")
+
+ if is_plat("macosx") then
+ add_ldflags("-framework CoreFoundation")
+ add_ldflags("-framework Security")
+ add_ldflags("-framework SystemConfiguration")
+ end