[iOS/macOS] Add option to automatically build (and sign / archive) bundles.

This commit is contained in:
bruvzg
2023-12-11 20:50:44 +02:00
parent dfe226b933
commit 94238d0462
9 changed files with 498 additions and 69 deletions

View File

@@ -23,6 +23,7 @@ def get_opts():
from SCons.Variables import BoolVariable
return [
("vulkan_sdk_path", "Path to the Vulkan SDK", ""),
(
"IOS_TOOLCHAIN_PATH",
"Path to iOS toolchain",
@@ -31,6 +32,7 @@ def get_opts():
("IOS_SDK_PATH", "Path to the iOS SDK", ""),
BoolVariable("ios_simulator", "Build for iOS Simulator", False),
("ios_triple", "Triple for ios toolchain", ""),
BoolVariable("generate_bundle", "Generate an APP bundle after building iOS/macOS binaries", False),
]