cyginstall.sh 467 B

1234567891011121314
  1. #!/bin/bash
  2. # this script must be run from freetdm root dir and it is assuming
  3. # FreeSWITCH is trunk is located at ../../
  4. fsdir=../..
  5. set -x
  6. cp Debug/mod/*.dll $fsdir/Debug/mod/
  7. cp mod_freetdm/Debug/*.pdb $fsdir/Debug/mod/
  8. cp Debug/freetdm.dll $fsdir/Debug/
  9. cp Debug/ftmod_*.dll $fsdir/Debug/mod/
  10. cp Debug/*.pdb $fsdir/Debug/mod/
  11. #cp Debug/testsangomaboost.exe $fsdir/Debug/
  12. echo "FRIENDLY REMINDER: RECOMPILE ftmod_wanpipe WHENEVER YOU INSTALL NEW DRIVERS"
  13. set +x