Skip to content

Commit

Permalink
xcodeproj: fix xrOS archiving
Browse files Browse the repository at this point in the history
  • Loading branch information
fkuehne committed Mar 18, 2024
1 parent 11258b2 commit caedf39
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions VLCKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1314,9 +1314,18 @@
MACOSX_DEPLOYMENT_TARGET = 10.13;
MODULEMAP_FILE = Resources/module.modulemap;
MTL_ENABLE_DEBUG_INFO = NO;
"OTHER_LDFLAGS[sdk=xros*]" = (
"-ObjC",
"-ld64",
);
"OTHER_LDFLAGS[sdk=xrsimulator*]" = (
"-ObjC",
"-ld64",
);
"OTHER_LIBTOOLFLAGS[arch=*]" = "";
PRODUCT_BUNDLE_IDENTIFIER = org.videolan.vlckit;
PRODUCT_NAME = VLCKit;
SDKROOT = xros;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator";
SUPPORTS_MACCATALYST = NO;
Expand All @@ -1325,6 +1334,7 @@
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
XROS_DEPLOYMENT_TARGET = 1.1;
};
name = Release;
};
Expand Down Expand Up @@ -1388,25 +1398,32 @@
MODULEMAP_FILE = Resources/module.modulemap;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = (
"-ObjC",
"-ld64",
);
OTHER_LDFLAGS = "-ObjC";
"OTHER_LDFLAGS[sdk=iphonesimulator*]" = (
"-ObjC",
"-read_only_relocs",
suppress,
);
"OTHER_LDFLAGS[sdk=xros*]" = (
"-ObjC",
"-ld64",
);
"OTHER_LDFLAGS[sdk=xrsimulator*]" = (
"-ObjC",
"-ld64",
);
"OTHER_LIBTOOLFLAGS[sdk=iphonesimulator*]" = "-read_only_relocs suppress";
PRODUCT_BUNDLE_IDENTIFIER = org.videolan.vlckit;
PRODUCT_NAME = VLCKit;
SDKROOT = xros;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "appletvos appletvsimulator iphoneos iphonesimulator macosx xros xrsimulator";
SUPPORTS_MACCATALYST = NO;
TARGETED_DEVICE_FAMILY = "1,2,3,7";
TVOS_DEPLOYMENT_TARGET = 11.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
XROS_DEPLOYMENT_TARGET = 1.1;
};
name = Debug;
};
Expand Down

0 comments on commit caedf39

Please sign in to comment.