mirror of
https://github.com/ossrs/srs.git
synced 2025-02-12 19:31:53 +00:00
8 lines
206 B
Bash
Executable file
8 lines
206 B
Bash
Executable file
#!/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"
|