项目清单
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.
 
 

22 lines
469 B

# ZLM-install
sudo yum -y install git
sudo yum -y install gcc
sudo yum -y install gcc-c++
sudo yum install openssl openssl-devel
wget http://base.codestudios.cn:3000/xailab/index/raw/branch/master/software/cmake-3.17.0-rc3.tar.gz
tar -xvf cmake-3.17.0-rc3.tar.gz
cd cmake-3.17.0-rc3
./configure
make -j4
sudo make install
cd ../
git clone --depth 1 https://gitee.com/xia-chu/ZLMediaKit
cd ZLMediaKit
git submodule update --init
mkdir build
cd build
cmake ..
make -j4