2013-12-10 09:19:42 +01:00
|
|
|
#!/bin/sh
|
2014-03-27 06:57:59 +01:00
|
|
|
cd "$(git rev-parse --show-toplevel 2>/dev/null)" >/dev/null 2>&1
|
2014-01-27 21:54:47 +01:00
|
|
|
python build/mktargets.py --directory codec/decoder --library decoder
|
2014-01-24 13:30:08 +01:00
|
|
|
python build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp
|
2014-04-23 09:51:21 +02:00
|
|
|
python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm --exclude arm_arch_common_macro.S --exclude arm_arch64_common_macro.S
|
2014-01-24 13:30:08 +01:00
|
|
|
python build/mktargets.py --directory codec/processing --library processing
|
2013-12-12 03:56:52 +01:00
|
|
|
|
2014-01-24 13:30:08 +01:00
|
|
|
python build/mktargets.py --directory codec/console/dec --binary h264dec
|
|
|
|
python build/mktargets.py --directory codec/console/enc --binary h264enc
|
2014-06-29 18:20:12 +02:00
|
|
|
python build/mktargets.py --directory codec/console/common --library console_common
|
2014-03-25 02:21:45 +01:00
|
|
|
python build/mktargets.py --directory test/encoder --prefix encoder_unittest
|
|
|
|
python build/mktargets.py --directory test/decoder --prefix decoder_unittest
|
2014-04-24 09:12:49 +02:00
|
|
|
python build/mktargets.py --directory test/processing --prefix processing_unittest
|
2014-03-25 02:21:45 +01:00
|
|
|
python build/mktargets.py --directory test/api --prefix api_test
|
2014-07-02 13:30:20 +02:00
|
|
|
python build/mktargets.py --directory test/common --prefix common_unittest
|
2014-06-25 08:07:51 +02:00
|
|
|
python build/mktargets.py --directory module --prefix module
|
2014-01-24 13:30:08 +01:00
|
|
|
python build/mktargets.py --directory gtest --library gtest --out build/gtest-targets.mk --cpp-suffix .cc --include gtest-all.cc
|