diff options
author | handbrake <[email protected]> | 2006-01-14 12:56:59 +0000 |
---|---|---|
committer | handbrake <[email protected]> | 2006-01-14 12:56:59 +0000 |
commit | 452f36599a1ea52f3bd42361b534594568c428fd (patch) | |
tree | 7f53f79212cf524f0a13ed5ee2250992f21eabcb /Jamfile | |
parent | a9a84221af31ca7d11d1aa182d8b152270203f9f (diff) |
HandBrake 0.4
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'Jamfile')
-rw-r--r-- | Jamfile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,10 +1,10 @@ -# $Id: Jamfile,v 1.33 2003/10/06 21:21:27 titer Exp $ +# $Id: Jamfile,v 1.38 2003/10/13 23:46:41 titer Exp $ # # This file is part of the HandBrake source code. # Homepage: <http://beos.titer.org/handbrake/>. # It may be used under the terms of the GNU General Public License. -HB_VERSION = 0.3 ; +HB_VERSION = 0.4 ; # Compilers C++ = g++ ; @@ -28,7 +28,7 @@ LINKLIBS = -ldvdplay -ldvdread -ldvdcss -lmpeg2 -lavcodec -la52 -lmp3lame ; if $(OS) = BEOS { C++FLAGS += -Wno-multichar ; - LINKLIBS += -lbe ; + LINKLIBS += -lbe -ltracker ; } else if $(OS) = LINUX { @@ -65,7 +65,7 @@ Library core/libhb : core/Ac3Decoder.cpp core/AviMuxer.cpp core/Manager.cpp core/Mp3Encoder.cpp core/Mpeg2Decoder.cpp core/Mpeg4Encoder.cpp core/MpegDemux.cpp core/Resizer.cpp - core/Scanner.cpp core/Thread.cpp ; + core/Scanner.cpp core/Thread.cpp core/Worker.cpp ; LinkLibraries HBTest : core/libhb.a ; Main HBTest : test/Test.cpp ; @@ -74,7 +74,8 @@ if $(OS) = BEOS { LinkLibraries HandBrake : core/libhb.a ; Main HandBrake : beos/HandBrake.cpp beos/MainWindow.cpp - beos/PictureWin.cpp ; + beos/PictureWin.cpp beos/ScanView.cpp + beos/RipView.cpp ; } if $(OS) = MACOSX |