Skip to content
Snippets Groups Projects
Commit 1c438468 authored by Brion Vibber's avatar Brion Vibber Committed by Felix Paul Kühne
Browse files

Fix build for iOS player samples


Was missing Security.framework, so failed to link all symbols.

Signed-off-by: Felix Paul Kühne's avatarFelix Paul Kühne <fkuehne@videolan.org>
parent c1f1fbdb
No related branches found
No related tags found
No related merge requests found
......@@ -27,11 +27,11 @@
7DEBFE78183BEAD500BC53D5 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEBFE72183BEAD500BC53D5 /* Default.png */; };
7DEBFE79183BEAD500BC53D5 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEBFE73183BEAD500BC53D5 /* Default@2x.png */; };
7DEBFE7B183BEAD500BC53D5 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DEBFE76183BEAD500BC53D5 /* main.m */; };
7DEBFE7D183BECDE00BC53D5 /* Dropin-Player-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7DEBFE7C183BECDE00BC53D5 /* Dropin-Player-Info.plist */; };
7DEBFE7F183BEE7500BC53D5 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DEBFE7E183BEE7500BC53D5 /* MediaPlayer.framework */; };
7DEBFE81183BF0AA00BC53D5 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DEBFE80183BF0AA00BC53D5 /* AVFoundation.framework */; };
7DEBFE85183BFC6300BC53D5 /* VDLMainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DEBFE83183BFC6300BC53D5 /* VDLMainViewController.m */; };
7DEBFE86183BFC6300BC53D5 /* VDLMainViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DEBFE84183BFC6300BC53D5 /* VDLMainViewController.xib */; };
D4771D93189848E70087441B /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4771D92189848E70087441B /* Security.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
......@@ -66,6 +66,7 @@
7DEBFE82183BFC6300BC53D5 /* VDLMainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VDLMainViewController.h; sourceTree = SOURCE_ROOT; };
7DEBFE83183BFC6300BC53D5 /* VDLMainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VDLMainViewController.m; sourceTree = SOURCE_ROOT; };
7DEBFE84183BFC6300BC53D5 /* VDLMainViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VDLMainViewController.xib; sourceTree = SOURCE_ROOT; };
D4771D92189848E70087441B /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
......@@ -73,6 +74,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D4771D93189848E70087441B /* Security.framework in Frameworks */,
7DEBFE81183BF0AA00BC53D5 /* AVFoundation.framework in Frameworks */,
7DEBFE7F183BEE7500BC53D5 /* MediaPlayer.framework in Frameworks */,
7D8745C8183BACBF00FD09E0 /* CoreGraphics.framework in Frameworks */,
......@@ -113,6 +115,7 @@
7D11B368183BA71600FF0D25 /* Frameworks */ = {
isa = PBXGroup;
children = (
D4771D92189848E70087441B /* Security.framework */,
7DEBFE80183BF0AA00BC53D5 /* AVFoundation.framework */,
7DEBFE7E183BEE7500BC53D5 /* MediaPlayer.framework */,
7D8745B4183BA8F900FD09E0 /* libMobileVLCKit.a */,
......@@ -190,7 +193,7 @@
isa = PBXProject;
attributes = {
CLASSPREFIX = VDL;
LastUpgradeCheck = 0460;
LastUpgradeCheck = 0500;
ORGANIZATIONNAME = VideoLAN;
};
buildConfigurationList = 7D11B361183BA71600FF0D25 /* Build configuration list for PBXProject "Dropin-Player" */;
......@@ -217,7 +220,6 @@
files = (
7DEBFE70183BEAC300BC53D5 /* InfoPlist.strings in Resources */,
7DEBFE86183BFC6300BC53D5 /* VDLMainViewController.xib in Resources */,
7DEBFE7D183BECDE00BC53D5 /* Dropin-Player-Info.plist in Resources */,
7DEBFE6D183BEAB500BC53D5 /* VDLPlaybackViewController.xib in Resources */,
7DEBFE79183BEAD500BC53D5 /* Default@2x.png in Resources */,
7DEBFE77183BEAD500BC53D5 /* Default-568h@2x.png in Resources */,
......
......@@ -27,6 +27,7 @@
7D8745C5183BAC3100FD09E0 /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D8745C4183BAC3100FD09E0 /* libstdc++.dylib */; };
7D8745C7183BACAE00FD09E0 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D8745C6183BACAE00FD09E0 /* QuartzCore.framework */; };
7D8745C8183BACBF00FD09E0 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D11B36D183BA71600FF0D25 /* CoreGraphics.framework */; };
D4771D95189849C80087441B /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4771D94189849C80087441B /* Security.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
......@@ -56,6 +57,7 @@
7D8745C2183BAC2700FD09E0 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
7D8745C4183BAC3100FD09E0 /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/libstdc++.dylib"; sourceTree = SDKROOT; };
7D8745C6183BACAE00FD09E0 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
D4771D94189849C80087441B /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
......@@ -63,6 +65,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D4771D95189849C80087441B /* Security.framework in Frameworks */,
7D8745C8183BACBF00FD09E0 /* CoreGraphics.framework in Frameworks */,
7D8745C7183BACAE00FD09E0 /* QuartzCore.framework in Frameworks */,
7D8745C5183BAC3100FD09E0 /* libstdc++.dylib in Frameworks */,
......@@ -101,6 +104,7 @@
7D11B368183BA71600FF0D25 /* Frameworks */ = {
isa = PBXGroup;
children = (
D4771D94189849C80087441B /* Security.framework */,
7D8745B4183BA8F900FD09E0 /* libMobileVLCKit.a */,
7D8745C6183BACAE00FD09E0 /* QuartzCore.framework */,
7D8745C4183BAC3100FD09E0 /* libstdc++.dylib */,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment