[0a8e41]: / build.sh

Download this file

13 lines (11 with data), 226 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#!/bin/bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P)"
rm -rf $DIR/third_party/SeqLib/ $DIR/third_party/seqan/
pushd $DIR/neusomatic
mkdir build
pushd build
cmake ..
make
popd
popd