From fc7bff4c68b17708cfb4b8aedcff5f730ee98502 Mon Sep 17 00:00:00 2001 From: Peter Slattery Date: Wed, 29 May 2024 12:08:13 -0700 Subject: [PATCH] Updating Usage code section of package_macos.jai --- macos_development/package_macos.jai | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/macos_development/package_macos.jai b/macos_development/package_macos.jai index ec809e8..697e1d1 100644 --- a/macos_development/package_macos.jai +++ b/macos_development/package_macos.jai @@ -2,7 +2,23 @@ This is heavily based (read: copy pasted + some modifications) on Thekla's module MacOS_Bundler.jai, released with the jai compiler. - Usage: + For usage code, see package_macos_example.jai + + This routine creates a .app file with the following structure: + + output_path/ + Entitlements.xcent + .app/ + Contents/ + Info.plist + MacOS/ + <-- the executable, copied from args.exe_path + ...copied in args.dynamic_libs + Resources/ + icon_data.icns + ...the contents of args.asset_directory + + */ #import "Basic";