forked from rpetrich/MobileVLC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHOWTO
46 lines (29 loc) · 962 Bytes
/
HOWTO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
==============================
==== Building VLC for iOS ====
==============================
1. BACKGROUND
MobileVLC is the end user application.
It has dependancies on:
- MobileVLCKit (hosted in vlc.git)
- MediaLibraryKit (in MediaLibraryKit)
2. STEPS
$ git clone git://git.videolan.org/MobileVLC.git
$ cd MobileVLC
$ ./buildMobileVLC.sh
Voilà!
3. WHAT IS HAPPENING
buildMobileVLC.sh will download vlc.git, MediaLibraryKit.git
in "ImportedSources" folder, and make sure we are correctly
linking them by adding links in "External".
Then it builds vlc and MobileVLCKit, MediaLibraryKit, and
then MobileVLC.
You can build each target manually by doing:
1. vlc
Run
$ cd ImportedSources/vlc; ./extras/package/ios/build.sh
2. MobileVLCKit
$ open ImportedSources/vlc/projects/macosx/framework/MobileVLCKit.xcodeproj
3. MediaLibraryKit
$ open ImportedSources/MediaLibraryKit/MobileMediaLibraryKit.xcodeproj
4. MobileVLC
$ open MobileVLC.xcodeproj