forked from Mirrors/freeswitch
15 lines
467 B
Bash
Executable File
15 lines
467 B
Bash
Executable File
#!/bin/bash
|
|
# this script must be run from openzap root dir and it is assuming
|
|
# FreeSWITCH is trunk is located at ../../
|
|
fsdir=../..
|
|
set -x
|
|
cp Debug/mod/*.dll $fsdir/Debug/mod/
|
|
cp mod_freetdm/Debug/*.pdb $fsdir/Debug/mod/
|
|
cp Debug/freetdm.dll $fsdir/Debug/
|
|
cp Debug/ftmod_*.dll $fsdir/Debug/mod/
|
|
cp Debug/*.pdb $fsdir/Debug/mod/
|
|
#cp Debug/testsangomaboost.exe $fsdir/Debug/
|
|
echo "FRIENDLY REMINDER: RECOMPILE ftmod_wanpipe WHENEVER YOU INSTALL NEW DRIVERS"
|
|
set +x
|
|
|