2013-12-10 09:19:42 +01:00
|
|
|
#!/bin/sh
|
|
|
|
(cd codec/decoder; python ../../build/mktargets.py --directory codec/decoder --library decoder --exclude StdAfx.cpp)
|
|
|
|
(cd codec/encoder; python ../../build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp)
|
2013-12-11 15:51:26 +01:00
|
|
|
(cd codec/common; python ../../build/mktargets.py --directory codec/common --library common)
|
2013-12-10 09:19:42 +01:00
|
|
|
(cd processing; python ../build/mktargets.py --directory processing --library processing --exclude wels_process.cpp --exclude WelsVideoProcessor.cpp)
|
|
|
|
|
|
|
|
(cd codec/console/dec; python ../../../build/mktargets.py --directory codec/console/dec --binary h264dec --exclude dec_console.h --exclude load_bundle_functions.cpp)
|
|
|
|
(cd codec/console/enc; python ../../../build/mktargets.py --directory codec/console/enc --binary h264enc --exclude enc_console.h --exclude bundlewelsenc.cpp)
|