forked from HandBrake/HandBrake
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PixelRatio Test branch with mp4 working and latest contrib libs
git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/PixelRatioWorking@176 b64f7644-9d1e-0410-96f1-a4d463321fa5
- Loading branch information
1 parent
7510249
commit 4dfed03
Showing
1 changed file
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# $Id: Jamfile,v 1.86 2005/11/04 13:09:40 titer Exp $ | ||
# | ||
# This file is part of the HandBrake source code. | ||
# Homepage: <http://handbrake.m0k.org/>. | ||
# It may be used under the terms of the GNU General Public License. | ||
|
||
SubDir TOP ; | ||
|
||
# libhb + contrib libraries | ||
HB_LIBS = libhb.a | ||
contrib/lib/liba52.a contrib/lib/libavformat.a | ||
contrib/lib/libavcodec.a contrib/lib/libavutil.a | ||
contrib/lib/libdvdread.a | ||
contrib/lib/libfaac.a contrib/lib/libmp3lame.a | ||
contrib/lib/libmpeg2.a contrib/lib/libvorbis.a | ||
contrib/lib/libvorbisenc.a contrib/lib/libogg.a | ||
contrib/lib/libsamplerate.a contrib/lib/libx264.a | ||
contrib/lib/libxvidcore.a ; | ||
|
||
if $(OS) = UNKNOWN | ||
{ | ||
OS = CYGWIN ; | ||
} | ||
|
||
if $(OS) != CYGWIN | ||
{ | ||
HB_LIBS = $(HB_LIBS) contrib/lib/libdvdcss.a ; | ||
} | ||
|
||
# Interfaces | ||
TEST_BIN = HBTest ; | ||
TEST_SRC = test/test.c ; | ||
BEOS_BIN = HandBrake ; | ||
BEOS_SRC = beos/HBApp.cpp beos/MainWindow.cpp beos/ScanWindow.cpp | ||
beos/PicWindow.cpp beos/Stepper.cpp beos/QueueWindow.cpp ; | ||
WX_BIN = wxHB ; | ||
WX_SRC = wx/hbWizard.cpp wx/wxHB.cpp ; | ||
UI_BIN = $(TEST_BIN) $(BEOS_BIN) $(WX_BIN) ; | ||
UI_SRC = $(TEST_SRC) $(BEOS_SRC) $(WX_SRC) ; | ||
|
||
# CLI app | ||
Main $(TEST_BIN) : $(TEST_SRC) ; | ||
|
||
if $(OS) = BEOS | ||
{ | ||
Main HandBrake : $(BEOS_SRC) ; | ||
|
||
BeOSPackage HandBrake-$(HB_VERSION)-BeOS.zip : HandBrake ; | ||
HB_PACKAGES += HandBrake-$(HB_VERSION)-BeOS.zip ; | ||
} | ||
if $(OS) = MACOSX | ||
{ | ||
OSX_SRC = macosx/main.mm macosx/Controller.h macosx/Controller.mm | ||
macosx/ScanController.h macosx/ScanController.mm | ||
macosx/PictureController.h macosx/PictureController.mm | ||
macosx/PictureGLView.h macosx/PictureGLView.mm | ||
macosx/QueueController.h macosx/QueueController.mm | ||
macosx/PrefsController.h macosx/PrefsController.m | ||
macosx/English.lproj/InfoPlist.strings | ||
macosx/English.lproj/MainMenu.nib/classes.nib | ||
macosx/English.lproj/MainMenu.nib/info.nib | ||
macosx/English.lproj/MainMenu.nib/keyedobjects.nib | ||
macosx/ExpressController.h macosx/ExpressController.m | ||
macosx/English.lproj/Express.nib/classes.nib | ||
macosx/English.lproj/Express.nib/info.nib | ||
macosx/English.lproj/Express.nib/keyedobjects.nib ; | ||
|
||
OSXApp HandBrake.app : $(OSX_SRC) $(HB_LIBS) ; | ||
|
||
# Package | ||
OSXPackage HandBrake-$(HB_VERSION)-OSX.zip : HandBrake.app ; | ||
HB_PACKAGES += HandBrake-$(HB_VERSION)-OSX.zip ; | ||
} | ||
if $(OS) = LINUX | ||
{ | ||
# WX UI outdated | ||
#SystemLibraries $(WX_BIN) : -lpthread `wx-config --libs` ; | ||
#ObjectC++Flags $(WX_SRC) : `wx-config --cflags` ; | ||
#Main $(WX_BIN) : $(WX_SRC) ; | ||
} | ||
|
||
ObjectHdrs $(UI_SRC) : $(TOP)/libhb ; | ||
LinkLibraries $(UI_BIN) : $(HB_LIBS) ; | ||
|
||
# Packages | ||
NotFile package ; | ||
Depends package : $(HB_PACKAGES) ; | ||
|
||
SubInclude TOP contrib ; | ||
SubInclude TOP libhb ; | ||
|