Changeset 21e1542f08c01307634b367a535bf60a14b3607c
- Timestamp:
- 13/06/08 16:25:30
(6 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213367130 +0200
- git-parent:
[5a1dc1c6ec6583a0e7758eb7ae3ec494796f1182]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1213366256 +0200
- Message:
VLCKit: Fix #1587 "missing libvlc/mediacontrol header files".
Headers are in VLCKit.framework/include/vlc.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r71d7c0d |
r21e1542 |
|
| 25 | 25 | modules="modules" |
|---|
| 26 | 26 | share="share" |
|---|
| | 27 | include="include" |
|---|
| 27 | 28 | target="${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}" |
|---|
| 28 | 29 | target_lib="${target}/${lib}" # Should we consider using a different well-known folder like shared resources? |
|---|
| 29 | 30 | target_modules="${target}/${modules}" # Should we consider using a different well-known folder like shared resources? |
|---|
| 30 | 31 | target_share="${target}/${share}" # Should we consider using a different well-known folder like shared resources? |
|---|
| | 32 | target_include="${target}/${share}" # Should we consider using a different well-known folder like shared resources? |
|---|
| 31 | 33 | linked_libs=" " |
|---|
| 32 | 34 | |
|---|
| … | … | |
| 148 | 150 | mkdir -p ${target_share} |
|---|
| 149 | 151 | $pbxcp ${VLC_SRC_DIR}/share/lua ${target_share} |
|---|
| | 152 | |
|---|
| | 153 | ########################## |
|---|
| | 154 | # Exporting headers |
|---|
| | 155 | echo "Exporting headers..." |
|---|
| | 156 | mkdir -p ${target_include}/vlc |
|---|
| | 157 | $pbxcp ${VLC_SRC_DIR}/include/vlc/*.h ${target_include}/vlc |
|---|
| | 158 | |
|---|
| 150 | 159 | fi |
|---|
| r71d7c0d |
r21e1542 |
|
| 121 | 121 | 1058C7B1FEA5585E11CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; }; |
|---|
| 122 | 122 | 32DBCF5E0370ADEE00C91783 /* VLC_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLC_Prefix.pch; sourceTree = "<group>"; }; |
|---|
| 123 | | 63030CC70CCA652C0088ECD1 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xml; name = Info.plist; path = Resources/Info.plist; sourceTree = "<group>"; }; |
|---|
| | 123 | 63030CC70CCA652C0088ECD1 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; name = Info.plist; path = Resources/Info.plist; sourceTree = "<group>"; }; |
|---|
| 124 | 124 | 6303C4390CF45CAE0000ECC8 /* VLCMediaListAspect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCMediaListAspect.m; sourceTree = "<group>"; }; |
|---|
| 125 | 125 | 6303C43B0CF45CC30000ECC8 /* VLCMediaListAspect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMediaListAspect.h; path = Public/VLCMediaListAspect.h; sourceTree = "<group>"; }; |
|---|