You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
# genereate the library header file.
|
|
|
|
objs=$1
|
|
|
|
rm -f $objs/include/srs_librtmp.h &&
|
|
cp $objs/../src/libs/srs_librtmp.hpp $objs/include/srs_librtmp.h
|
|
echo "genereate srs-librtmp headers success"
|