18 lines
417 B
Bash
18 lines
417 B
Bash
|
#!/bin/bash
|
||
|
# Written by Suzhengchun on 20160213
|
||
|
|
||
|
set -e
|
||
|
BUILDDIR=build
|
||
|
rm -rf $BUILDDIR
|
||
|
if [ ! -f $BUILDDIR ]; then
|
||
|
mkdir -p $BUILDDIR
|
||
|
fi
|
||
|
pushd $BUILDDIR
|
||
|
cmake ..
|
||
|
make VERBOSE=1 -j 1
|
||
|
ln -fs `pwd`/lib/vnctpmd.so ../vnctpmd/test/vnctpmd.so
|
||
|
ln -fs `pwd`/lib/vnctptd.so ../vnctptd/test/vnctptd.so
|
||
|
cp ../vnctpmd/test/vnctpmd.* ../../vn.trader/ctpGateway/
|
||
|
cp ../vnctptd/test/vnctptd.* ../../vn.trader/ctpGateway/
|
||
|
popd
|