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

20 lines
446 B

  1. sudo yum -y install git
  2. sudo yum -y install gcc
  3. sudo yum -y install gcc-c++
  4. sudo yum install openssl openssl-devel
  5. wget https://github.com/Kitware/CMake/releases/download/v3.17.0-rc3/cmake-3.17.0-rc3.tar.gz
  6. tar -xvf cmake-3.17.0-rc3.tar.gz
  7. cd cmake-3.17.0-rc3
  8. ./configure
  9. make -j4
  10. sudo make install
  11. cd ../
  12. git clone --depth 1 https://gitee.com/xia-chu/ZLMediaKit
  13. cd ZLMediaKit
  14. git submodule update --init
  15. mkdir build
  16. cd build
  17. cmake ..
  18. make -j4