BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
1f85c99
Branches
Tags
master
uproctrace
tests
trace_build
run_build.bash
implement upt-trace wrapper
Stefan Schuermans
commited
1f85c99
at 2020-05-22 13:32:43
run_build.bash
Blame
History
Raw
#! /bin/bash set -eux -o pipefail if (( $# < 1 )) then echo "usage: $0 <SOURCE_DIR>" >&2 exit 2 fi SOURCE_DIR="$(readlink -f "$1")" mkdir build cd build cmake -G Ninja -D CMAKE_BUILD_TYPE=Release "$SOURCE_DIR" ninja