File tree 4 files changed +13
-3
lines changed
4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 862
862
INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2024 John Holdsworth. All rights reserved.";
863
863
INFOPLIST_KEY_NSPrincipalClass = "";
864
864
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
865
+ LD_RUNPATH_SEARCH_PATHS = (
866
+ "$(inherited)",
867
+ $PLATFORM_DIR/Developer/usr/lib,
868
+ );
865
869
LIBRARY_SEARCH_PATHS = "$(PLATFORM_DIR)/Developer/usr/lib";
866
870
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
867
871
MACH_O_TYPE = mh_dylib;
899
903
INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2024 John Holdsworth. All rights reserved.";
900
904
INFOPLIST_KEY_NSPrincipalClass = "";
901
905
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
906
+ LD_RUNPATH_SEARCH_PATHS = (
907
+ "$(inherited)",
908
+ $PLATFORM_DIR/Developer/usr/lib,
909
+ );
902
910
LIBRARY_SEARCH_PATHS = "$(PLATFORM_DIR)/Developer/usr/lib";
903
911
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
904
912
MACH_O_TYPE = mh_dylib;
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ struct Defaults {
15
15
static let librariesDefault = " libraries "
16
16
static let codesigningDefault = " codesigningIdentity "
17
17
private static let xcodeRestartDefault = " xcodeRestartDefault "
18
+ static var xcodePath : String {
19
+ xcodeDefault ?? " /Applications/Xcode.app " }
18
20
static var xcodeDefault : String ? {
19
21
get {
20
22
userDefaults. string ( forKey: xcodePathDefault)
@@ -24,8 +26,6 @@ struct Defaults {
24
26
forKey: xcodePathDefault)
25
27
}
26
28
}
27
- static var xcodePath : String {
28
- xcodeDefault ?? " /Applications/Xcode.app " }
29
29
static var deviceLibraries : String {
30
30
get {
31
31
userDefaults. string ( forKey: librariesDefault) ??
Original file line number Diff line number Diff line change 19
19
<key >CFBundleShortVersionString </key >
20
20
<string >$(MARKETING_VERSION) </string >
21
21
<key >CFBundleVersion </key >
22
- <string >11111 </string >
22
+ <string >11119 </string >
23
23
<key >LSApplicationCategoryType </key >
24
24
<string >public.app-category.developer-tools </string >
25
25
<key >LSMinimumSystemVersion </key >
Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ function build_bundle () {
39
39
ln -sf " ${FAMILY} Injection.bundle/${FAMILY} Injection" " $CODESIGNING_FOLDER_PATH /Contents/Resources/lib${SDK} Injection.dylib"
40
40
}
41
41
42
+ ln -sf " macOSInjection.bundle/Contents/MacOS/macOSInjection" " $CODESIGNING_FOLDER_PATH /Contents/Resources/libmacosxInjection.dylib" &&
43
+
42
44
build_bundle iOS iPhoneSimulator iphonesimulator &&
43
45
build_bundle iOSDev iPhoneOS iphoneos &&
44
46
build_bundle tvOS AppleTVSimulator appletvsimulator &&
You can’t perform that action at this time.
0 commit comments