1 Star 0 Fork 0

CardinalSystem/EasyPusher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Buildit 1.91 KB
一键复制 编辑 原始数据 按行查看 历史
KimStyle 提交于 2017-05-26 14:55 . 修复linux编译及key的问题
#!/bin/sh
usage()
{
echo "**************build stream from rtsp demo******************"
echo "1. build 32bit program ./Buildit rtsp i386 [target in i386]"
echo "2. build 64bit program ./Buildit rtsp x64 [target in x64]"
echo "3. build arm program for arm ./Buildit rtsp arm [target in arm]"
echo "4. clean up ./Buildit rtsp clean"
echo "-----------------------------------------------------------"
echo "**************build stream from file demo******************"
echo "5. build 32bit program ./Buildit file i386 [target in i386]"
echo "6. build 64bit program ./Buildit file x64 [target in x64]"
echo "7. build arm program for arm ./Buildit file arm [target in arm]"
echo "8. clean up ./Buildit file clean"
echo "-----------------------------------------------------------"
echo "**************build stream from sdk demo*******************"
echo "9. build 32bit program ./Buildit sdk i386 [target in i386]"
echo "10. build arm program for arm ./Buildit sdk arm [target in arm]"
echo "11. clean up ./Buildit sdk clean"
echo "-----------------------------------------------------------"
}
build()
{
if [ "$1" = "clean" ] ; then
make -f nbproject/Makefile-arm.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-i386.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-x64.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .clean-conf
elif [ "$1" = "arm" ] ; then
make -f nbproject/Makefile-arm.mk QMAKE= SUBPROJECTS= .build-conf
elif [ "$1" = "x64" ] ; then
make -f nbproject/Makefile-x64.mk QMAKE= SUBPROJECTS= .build-conf
elif [ "$1" = "i386" ] ; then
make -f nbproject/Makefile-i386.mk QMAKE= SUBPROJECTS= .build-conf
else
usage;
fi
}
if [ "$1" = "rtsp" ] ; then
cd EasyPusher_RTSP
build $2;
elif [ "$1" = "file" ] ; then
cd EasyPusher_File
build $2;
elif [ "$1" = "sdk" ] ; then
cd EasyPusher_SDK
build $2;
else
usage;
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cardinalsystem/EasyPusher.git
git@gitee.com:cardinalsystem/EasyPusher.git
cardinalsystem
EasyPusher
EasyPusher
master

搜索帮助