Logo white

Hu Chunming / FFNvDecoder

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • FFNvDecoder
  • 3rdparty
  • jrtp_export
  • build_jthread.sh
  • 支持gb28181
    3d2ab595
    Hu Chunming authored
    2022-12-26 16:21:33 +0800  
    Browse Code »
build_jthread.sh 339 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#!/bin/bash
currentPath=$(pwd)

libPath=$(pwd)/../jthread-1.3.3

if [ -d "./jthread" ]; then
    rm -rf jthread
fi
mkdir jthread
cd jthread
installPath=$(pwd)


cd ${libPath}
if [ -d "./build" ]; then
    rm -rf build
fi
mkdir build
cd build

cmake -DCMAKE_INSTALL_PREFIX=${installPath} -DCMAKE_USE_OPENSSL=OFF ..
make
make install

cd ..