aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2023-11-24 15:49:35 +0100
committerDan Engelbrecht <[email protected]>2023-11-24 15:49:35 +0100
commitf9d2c3bd4702c373e8bb0910bd14401ba5ff4209 (patch)
tree44210ba1d32cb67b9c4a0971d3fc6b76e82bcebe
parentAdd GC Cancel/Stop (#568) (diff)
downloadzen-f9d2c3bd4702c373e8bb0910bd14401ba5ff4209.tar.xz
zen-f9d2c3bd4702c373e8bb0910bd14401ba5ff4209.zip
test adding info.plist to zen and zenserver
-rw-r--r--src/zen/info.plist4
-rw-r--r--src/zen/xmake.lua1
-rw-r--r--src/zenserver/info.plist4
-rw-r--r--src/zenserver/xmake.lua1
4 files changed, 10 insertions, 0 deletions
diff --git a/src/zen/info.plist b/src/zen/info.plist
new file mode 100644
index 000000000..c1614db3e
--- /dev/null
+++ b/src/zen/info.plist
@@ -0,0 +1,4 @@
+<key>NSHumanReadableCopyright</key>
+<string>Copyright Epic Games Inc. All Rights Reserved</string>
+<key>CFBundleName<key>
+<string>CLI utility for Unreal Zen Storage Service</string>
diff --git a/src/zen/xmake.lua b/src/zen/xmake.lua
index e8d6fe122..3a5a138ee 100644
--- a/src/zen/xmake.lua
+++ b/src/zen/xmake.lua
@@ -21,6 +21,7 @@ target("zen")
end
if is_plat("macosx") then
+ add_files("info.plist")
add_ldflags("-framework CoreFoundation")
add_ldflags("-framework Security")
add_ldflags("-framework SystemConfiguration")
diff --git a/src/zenserver/info.plist b/src/zenserver/info.plist
new file mode 100644
index 000000000..029df948d
--- /dev/null
+++ b/src/zenserver/info.plist
@@ -0,0 +1,4 @@
+<key>NSHumanReadableCopyright</key>
+<string>Copyright Epic Games Inc. All Rights Reserved</string>
+<key>CFBundleName<key>
+<string>Unreal Zen Storage Service</string>
diff --git a/src/zenserver/xmake.lua b/src/zenserver/xmake.lua
index c42f305ee..1f61d8797 100644
--- a/src/zenserver/xmake.lua
+++ b/src/zenserver/xmake.lua
@@ -35,6 +35,7 @@ target("zenserver")
end
if is_plat("macosx") then
+ add_files("info.plist")
add_ldflags("-framework CoreFoundation")
add_ldflags("-framework CoreGraphics")
add_ldflags("-framework CoreText")