Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
dc7425e3
Commit
dc7425e3
authored
Jan 06, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOSX: Rename the framework to VLCKit.
parent
d8ad30f9
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
78 additions
and
89 deletions
+78
-89
extras/MacOSX/Framework/Headers/Public/VLCKit.h
extras/MacOSX/Framework/Headers/Public/VLCKit.h
+0
-0
extras/MacOSX/Framework/Pre-Compile.sh
extras/MacOSX/Framework/Pre-Compile.sh
+3
-3
extras/MacOSX/Framework/Resources/Info.plist
extras/MacOSX/Framework/Resources/Info.plist
+17
-17
extras/MacOSX/Framework/VLCKit.xcodeproj/project.pbxproj
extras/MacOSX/Framework/VLCKit.xcodeproj/project.pbxproj
+19
-17
extras/MacOSX/VLC_app/Sources/VLCAppBindings.h
extras/MacOSX/VLC_app/Sources/VLCAppBindings.h
+1
-1
extras/MacOSX/VLC_app/Sources/VLCBrowsableVideoView.h
extras/MacOSX/VLC_app/Sources/VLCBrowsableVideoView.h
+1
-1
extras/MacOSX/VLC_app/Sources/VLCController.h
extras/MacOSX/VLC_app/Sources/VLCController.h
+1
-1
extras/MacOSX/VLC_app/Sources/VLCController.m
extras/MacOSX/VLC_app/Sources/VLCController.m
+1
-1
extras/MacOSX/VLC_app/Sources/VLCMediaArrayController.h
extras/MacOSX/VLC_app/Sources/VLCMediaArrayController.h
+1
-1
extras/MacOSX/VLC_app/VLC.xcodeproj/project.pbxproj
extras/MacOSX/VLC_app/VLC.xcodeproj/project.pbxproj
+34
-47
No files found.
extras/MacOSX/Framework/Headers/Public/VLC.h
→
extras/MacOSX/Framework/Headers/Public/VLC
Kit
.h
View file @
dc7425e3
File moved
extras/MacOSX/Framework/Pre-Compile.sh
View file @
dc7425e3
if
test
"
${
ACTION
}
"
=
""
;
then
# Debug --
TARGET_BUILD_DIR
=
"."
FULL_PRODUCT_NAME
=
"VLC.framework"
FULL_PRODUCT_NAME
=
"VLC
Kit
.framework"
CONTENTS_FOLDER_PATH
=
"
${
FULL_PRODUCT_NAME
}
/Versions/A"
VLC_BUILD_DIR
=
"../../.."
VLC_SRC_DIR
=
"../../.."
...
...
@@ -68,7 +68,7 @@ if test "${ACTION}" = "build"; then
##########################
##########################
# Build the modules folder (Same as VLC.framework/modules in Makefile)
# Build the modules folder (Same as VLC
Kit
.framework/modules in Makefile)
echo
"Building modules folder..."
# Figure out what modules are available to install
for
module
in
`
top_builddir
=
"
${
VLC_BUILD_DIR
}
"
${
vlc_config
}
--target
plugin
`
;
do
...
...
@@ -97,7 +97,7 @@ if test "${ACTION}" = "build"; then
##########################
##########################
# Build the library folder (Same as VLC.framework/lib in Makefile)
# Build the library folder (Same as VLC
Kit
.framework/lib in Makefile)
echo
"Building library folder..."
for
linked_lib
in
${
linked_libs
}
;
do
case
"
${
linked_lib
}
"
in
...
...
extras/MacOSX/Framework/Resources/Info.plist
View file @
dc7425e3
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple
Computer
//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version=
"1.0"
>
<dict>
<key>
CFBundleDevelopmentRegion
</key>
<string>
English
</string>
<key>
CFBundleExecutable
</key>
<string>
Quartz
</string>
<key>
CFBundleIdentifier
</key>
<string>
org.videolan.vlc
framework
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
<string>
VLC
</string>
<key>
CFBundlePackageType
</key>
<string>
FMWK
</string>
<key>
CFBundleShortVersionString
</key>
<string>
0.1
</string>
<key>
CFBundleVersion
</key>
<string>
0.1
</string>
<key>
CFBundleDevelopmentRegion
</key>
<string>
English
</string>
<key>
CFBundleExecutable
</key>
<string>
Quartz
</string>
<key>
CFBundleIdentifier
</key>
<string>
org.videolan.vlckit
framework
</string>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleName
</key>
<string>
VLC
</string>
<key>
CFBundlePackageType
</key>
<string>
FMWK
</string>
<key>
CFBundleShortVersionString
</key>
<string>
0.1
</string>
<key>
CFBundleVersion
</key>
<string>
0.1
</string>
</dict>
</plist>
extras/MacOSX/Framework/VLC.xcodeproj/project.pbxproj
→
extras/MacOSX/Framework/VLC
Kit
.xcodeproj/project.pbxproj
View file @
dc7425e3
...
...
@@ -61,7 +61,7 @@
EF7311900CB5797B009473B4
/* VLCAudio.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF73118E0CB5797B009473B4
/* VLCAudio.h */
;
settings
=
{
ATTRIBUTES
=
(
Public
,
);
};
};
EF7311910CB5797B009473B4
/* VLCAudio.m in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF73118F0CB5797B009473B4
/* VLCAudio.m */
;
};
EF78BD100CAEEEC300354E6E
/* VLCEventManager.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF78BD0D0CAEEEC300354E6E
/* VLCEventManager.h */
;
settings
=
{
ATTRIBUTES
=
();
};
};
EF78BD1B0CAEEEE700354E6E
/* VLC
.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF78BD120CAEEEE700354E6E
/* VLC
.h */
;
settings
=
{
ATTRIBUTES
=
(
Public
,
);
};
};
EF78BD1B0CAEEEE700354E6E
/* VLC
Kit.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF78BD120CAEEEE700354E6E
/* VLCKit
.h */
;
settings
=
{
ATTRIBUTES
=
(
Public
,
);
};
};
EF78BD1C0CAEEEE700354E6E
/* VLCMedia.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF78BD130CAEEEE700354E6E
/* VLCMedia.h */
;
settings
=
{
ATTRIBUTES
=
(
Public
,
);
};
};
EF78BD1E0CAEEEE700354E6E
/* VLCMediaLibrary.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF78BD150CAEEEE700354E6E
/* VLCMediaLibrary.h */
;
settings
=
{
ATTRIBUTES
=
(
Public
,
);
};
};
EF78BD1F0CAEEEE700354E6E
/* VLCMediaList.h in Headers */
=
{
isa
=
PBXBuildFile
;
fileRef
=
EF78BD160CAEEEE700354E6E
/* VLCMediaList.h */
;
settings
=
{
ATTRIBUTES
=
(
Public
,
);
};
};
...
...
@@ -124,14 +124,14 @@
637D5ABC0CF6F2650073EA45
/* VLCMediaDiscoverer.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCMediaDiscoverer.h
;
path
=
Public/VLCMediaDiscoverer.h
;
sourceTree
=
"<group>"
;
};
637D5ADB0CF6F2720073EA45
/* VLCMediaDiscoverer.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.objc
;
path
=
VLCMediaDiscoverer.m
;
sourceTree
=
"<group>"
;
};
6384FD070D0DBA20005EB1F7
/* QuartzCore.framework */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
wrapper.framework
;
name
=
QuartzCore.framework
;
path
=
/System/Library/Frameworks/QuartzCore.framework
;
sourceTree
=
"<absolute>"
;
};
8DC2EF5B0486A6940098B216
/* VLC
.framework */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.framework
;
includeInIndex
=
0
;
path
=
VLC
.framework
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
8DC2EF5B0486A6940098B216
/* VLC
Kit.framework */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.framework
;
includeInIndex
=
0
;
path
=
VLCKit
.framework
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
A7A0CEA20D2EF13000F2C039
/* VLCVideoCommon.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCVideoCommon.h
;
path
=
Internal/VLCVideoCommon.h
;
sourceTree
=
"<group>"
;
};
A7A0CEA30D2EF13000F2C039
/* VLCVideoCommon.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
path
=
VLCVideoCommon.m
;
sourceTree
=
"<group>"
;
};
D2F7E79907B2D74100F64583
/* CoreData.framework */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
wrapper.framework
;
name
=
CoreData.framework
;
path
=
/System/Library/Frameworks/CoreData.framework
;
sourceTree
=
"<absolute>"
;
};
EF73118E0CB5797B009473B4
/* VLCAudio.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCAudio.h
;
path
=
Public/VLCAudio.h
;
sourceTree
=
"<group>"
;
};
EF73118F0CB5797B009473B4
/* VLCAudio.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
path
=
VLCAudio.m
;
sourceTree
=
"<group>"
;
};
EF78BD0D0CAEEEC300354E6E
/* VLCEventManager.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCEventManager.h
;
path
=
Internal/VLCEventManager.h
;
sourceTree
=
"<group>"
;
};
EF78BD120CAEEEE700354E6E
/* VLC
.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLC.h
;
path
=
Public/VLC
.h
;
sourceTree
=
"<group>"
;
};
EF78BD120CAEEEE700354E6E
/* VLC
Kit.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCKit.h
;
path
=
Public/VLCKit
.h
;
sourceTree
=
"<group>"
;
};
EF78BD130CAEEEE700354E6E
/* VLCMedia.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCMedia.h
;
path
=
Public/VLCMedia.h
;
sourceTree
=
"<group>"
;
};
EF78BD150CAEEEE700354E6E
/* VLCMediaLibrary.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCMediaLibrary.h
;
path
=
Public/VLCMediaLibrary.h
;
sourceTree
=
"<group>"
;
};
EF78BD160CAEEEE700354E6E
/* VLCMediaList.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
30
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
VLCMediaList.h
;
path
=
Public/VLCMediaList.h
;
sourceTree
=
"<group>"
;
};
...
...
@@ -166,7 +166,7 @@
034768DFFF38A50411DB9C8B
/* Products */
=
{
isa
=
PBXGroup
;
children
=
(
8DC2EF5B0486A6940098B216
/* VLC.framework */
,
8DC2EF5B0486A6940098B216
/* VLC
Kit
.framework */
,
);
name
=
Products
;
sourceTree
=
"<group>"
;
...
...
@@ -269,7 +269,7 @@
isa
=
PBXGroup
;
children
=
(
637CFB960D2D281900A041B6
/* Internal */
,
EF78BD120CAEEEE700354E6E
/* VLC.h */
,
EF78BD120CAEEEE700354E6E
/* VLC
Kit
.h */
,
637CFB930D2D280800A041B6
/* VLCLibrary.h */
,
EF78BD0D0CAEEEC300354E6E
/* VLCEventManager.h */
,
EF78BD130CAEEEE700354E6E
/* VLCMedia.h */
,
...
...
@@ -296,7 +296,7 @@
files
=
(
6303C43C0CF45CC30000ECC8
/* VLCMediaListAspect.h in Headers */
,
EF78BD100CAEEEC300354E6E
/* VLCEventManager.h in Headers */
,
EF78BD1B0CAEEEE700354E6E
/* VLC.h in Headers */
,
EF78BD1B0CAEEEE700354E6E
/* VLC
Kit
.h in Headers */
,
EF78BD1C0CAEEEE700354E6E
/* VLCMedia.h in Headers */
,
EF78BD1E0CAEEEE700354E6E
/* VLCMediaLibrary.h in Headers */
,
EF78BD1F0CAEEEE700354E6E
/* VLCMediaList.h in Headers */
,
...
...
@@ -332,9 +332,9 @@
/* End PBXLegacyTarget section */
/* Begin PBXNativeTarget section */
8DC2EF4F0486A6940098B216
/* VLC */
=
{
8DC2EF4F0486A6940098B216
/* VLC
Kit
*/
=
{
isa
=
PBXNativeTarget
;
buildConfigurationList
=
1DEB91AD08733DA50010E9CD
/* Build configuration list for PBXNativeTarget "VLC" */
;
buildConfigurationList
=
1DEB91AD08733DA50010E9CD
/* Build configuration list for PBXNativeTarget "VLC
Kit
" */
;
buildPhases
=
(
EF78BD2E0CAEEF9500354E6E
/* ShellScript */
,
8DC2EF540486A6940098B216
/* Sources */
,
...
...
@@ -347,10 +347,10 @@
comments
=
"-lvlc -lvlc-control -dylib_file @loader_path/../lib/vlc_libintl.dylib:$(TARGET_BUILD_DIR)/$(PROJECT_NAME).framework/lib/vlc_libintl.dylib -dylib_file @loader_path/../lib/libvlc.dylib:$(TARGET_BUILD_DIR)/$(PROJECT_NAME).framework/lib/libvlc.dylib"
;
dependencies
=
(
);
name
=
VLC
;
name
=
VLC
Kit
;
productInstallPath
=
"$(HOME)/Library/Frameworks"
;
productName
=
VLC
;
productReference
=
8DC2EF5B0486A6940098B216
/* VLC.framework */
;
productReference
=
8DC2EF5B0486A6940098B216
/* VLC
Kit
.framework */
;
productType
=
"com.apple.product-type.framework"
;
};
/* End PBXNativeTarget section */
...
...
@@ -358,7 +358,7 @@
/* Begin PBXProject section */
0867D690FE84028FC02AAC07
/* Project object */
=
{
isa
=
PBXProject
;
buildConfigurationList
=
1DEB91B108733DA50010E9CD
/* Build configuration list for PBXProject "VLC" */
;
buildConfigurationList
=
1DEB91B108733DA50010E9CD
/* Build configuration list for PBXProject "VLC
Kit
" */
;
compatibilityVersion
=
"Xcode 2.4"
;
hasScannedForEncodings
=
1
;
mainGroup
=
0867D691FE84028FC02AAC07
/* VLC */
;
...
...
@@ -367,7 +367,7 @@
projectRoot
=
""
;
targets
=
(
633BD6D20D2ADE040012A314
/* vlc-contrib-core-framework */
,
8DC2EF4F0486A6940098B216
/* VLC */
,
8DC2EF4F0486A6940098B216
/* VLC
Kit
*/
,
633BD6E40D2ADF030012A314
/* vlc-contrib */
,
633BD6DB0D2ADE4E0012A314
/* vlc-core */
,
63FFDBCE0D2AE2AE0092FC96
/* vlc-configure */
,
...
...
@@ -485,7 +485,7 @@
};
633BD6F20D2AE0430012A314
/* PBXTargetDependency */
=
{
isa
=
PBXTargetDependency
;
target
=
8DC2EF4F0486A6940098B216
/* VLC */
;
target
=
8DC2EF4F0486A6940098B216
/* VLC
Kit
*/
;
targetProxy
=
633BD6F10D2AE0430012A314
/* PBXContainerItemProxy */
;
};
63FFDBD30D2AE3070092FC96
/* PBXTargetDependency */
=
{
...
...
@@ -530,7 +530,8 @@
"$(LD_FLAGS_LIBVLC)"
,
"$(LD_FLAGS_LIBVLC_CONTROL)"
,
);
PRODUCT_NAME
=
VLC
;
PRIVATE_HEADERS_FOLDER_PATH
=
"$(CONTENTS_FOLDER_PATH)/PrivateHeaders"
;
PRODUCT_NAME
=
VLCKit
;
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES
=
YES
;
VLC_BUILD_DIR
=
"$(VLC_SRC_DIR)"
;
VLC_FRAMEWORK
=
"$(TARGET_BUILD_DIR)/$(PROJECT_NAME).framework"
;
...
...
@@ -572,7 +573,8 @@
"$(LD_FLAGS_LIBVLC)"
,
"$(LD_FLAGS_LIBVLC_CONTROL)"
,
);
PRODUCT_NAME
=
VLC
;
PRIVATE_HEADERS_FOLDER_PATH
=
"$(CONTENTS_FOLDER_PATH)/PrivateHeaders"
;
PRODUCT_NAME
=
VLCKit
;
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES
=
YES
;
VLC_BUILD_DIR
=
"$(VLC_SRC_DIR)"
;
VLC_FRAMEWORK
=
"$(TARGET_BUILD_DIR)/$(PROJECT_NAME).framework"
;
...
...
@@ -691,7 +693,7 @@
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB91AD08733DA50010E9CD
/* Build configuration list for PBXNativeTarget "VLC" */
=
{
1DEB91AD08733DA50010E9CD
/* Build configuration list for PBXNativeTarget "VLC
Kit
" */
=
{
isa
=
XCConfigurationList
;
buildConfigurations
=
(
1DEB91AE08733DA50010E9CD
/* Debug */
,
...
...
@@ -700,7 +702,7 @@
defaultConfigurationIsVisible
=
0
;
defaultConfigurationName
=
Debug
;
};
1DEB91B108733DA50010E9CD
/* Build configuration list for PBXProject "VLC" */
=
{
1DEB91B108733DA50010E9CD
/* Build configuration list for PBXProject "VLC
Kit
" */
=
{
isa
=
XCConfigurationList
;
buildConfigurations
=
(
1DEB91B208733DA50010E9CD
/* Debug */
,
...
...
extras/MacOSX/VLC_app/Sources/VLCAppBindings.h
View file @
dc7425e3
...
...
@@ -23,7 +23,7 @@
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <VLC
/VLC
.h>
#import <VLC
Kit/VLCKit
.h>
/* We do implement some category functions,
* But we don't publicise them, as they should
...
...
extras/MacOSX/VLC_app/Sources/VLCBrowsableVideoView.h
View file @
dc7425e3
...
...
@@ -24,7 +24,7 @@
*****************************************************************************/
#import <QuartzCore/QuartzCore.h>
#import <VLC
/VLC
.h>
#import <VLC
Kit/VLCKit
.h>
@interface
VLCBrowsableVideoView
:
VLCVideoView
{
BOOL
menuDisplayed
;
...
...
extras/MacOSX/VLC_app/Sources/VLCController.h
View file @
dc7425e3
...
...
@@ -23,7 +23,7 @@
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <VLC
/VLC
.h>
#import <VLC
Kit/VLCKit
.h>
@class
VLCMainWindow
;
...
...
extras/MacOSX/VLC_app/Sources/VLCController.m
View file @
dc7425e3
...
...
@@ -22,7 +22,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <VLC
/VLC
.h>
#import <VLC
Kit/VLCKit
.h>
#import "VLCController.h"
#import "VLCAppAdditions.h"
...
...
extras/MacOSX/VLC_app/Sources/VLCMediaArrayController.h
View file @
dc7425e3
...
...
@@ -24,7 +24,7 @@
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <VLC
/VLC
.h>
#import <VLC
Kit/VLCKit
.h>
@interface
VLCMediaArrayController
:
NSArrayController
{
...
...
extras/MacOSX/VLC_app/VLC.xcodeproj/project.pbxproj
View file @
dc7425e3
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment