Changeset 9f6362609025b1895c2a3172a12bd5439cd2645c
- Timestamp:
- 04/12/03 15:06:55
(5 years ago)
- Author:
- Cyril Deguet <asmax@videolan.org>
- git-committer:
- Cyril Deguet <asmax@videolan.org> 1050152815 +0000
- git-parent:
[50231301085faea0926ed268603ecb8679a54678]
- git-author:
- Cyril Deguet <asmax@videolan.org> 1050152815 +0000
- Message:
* added libraries to please Bill ;)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1000490 |
r9f63626 |
|
| 5 | 5 | vlc = Extension('vlc', |
|---|
| 6 | 6 | sources = ['vlcmodule.c'], |
|---|
| 7 | | libraries = ['vlc', 'rt', 'dl' , 'pthread', 'ffmpeg', 'm', |
|---|
| 8 | | 'avcodec'], |
|---|
| 9 | | library_dirs = ['../lib', '../modules/codec/ffmpeg', |
|---|
| | 7 | libraries = ['vlc', 'rt', 'dl' , 'pthread', 'ffmpeg', 'm', |
|---|
| | 8 | 'avcodec','mpeg_video','idct','idctclassic', |
|---|
| | 9 | 'motion','memcpymmx','idctmmx','motionmmx', |
|---|
| | 10 | 'i420_rgb_mmx','i420_yuy2_mmx','i420_ymga_mmx', |
|---|
| | 11 | 'i422_yuy2_mmx','memcpymmxext','idctmmxext', |
|---|
| | 12 | 'motionmmxext','memcpy3dn'], |
|---|
| | 13 | library_dirs = ['/usr/local/lib/vlc', '../lib', |
|---|
| | 14 | '../modules/codec/ffmpeg', |
|---|
| 10 | 15 | FFMPEG_DIR + '/libavcodec']) |
|---|
| 11 | 16 | |
|---|