aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/initialize_submodule.sh
blob: f3456adff15440e0a0479eb1c755e57bd81c5bd4 (plain) (blame)
1
2
3
4
5
6
7
#! /bin/sh

oldpwd=`pwd`
cd "../third_party"
git submodule update --init -r
cd benchmark && cmake -DCMAKE_BUILD_TYPE=Release && make && cd ..
cd "$oldpwd"