Blame view

3rdparty/gb28181_3rd/jrtp_export/build_jthread.sh 369 Bytes
5792f910   Hu Chunming   28181 三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  #!/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
  
39f55357   Hu Chunming   提交28181库的修改
21
  cmake -DCMAKE_INSTALL_PREFIX=${installPath} -DCMAKE_USE_OPENSSL=OFF -D_GLIBCXX_USE_CXX11_ABI=0 ..
5792f910   Hu Chunming   28181 三方库
22
23
24
25
  make -j
  make install
  
  cd ..