summaryrefslogtreecommitdiffstats
path: root/build/setup/build/ccpi.sh
blob: 329fbdf1f25517600250a36525520936f72229d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env bash

real_script=$(readlink "$0")
[ -z "$real_script" ] && real_script="$0"
script_path=$(dirname "$real_script")

set -o errexit

# Do both (as framework's cmake install python files in invalid location)
[ -f CMakeLists.txt ] && bash "$script_path/cmake.sh"
[ -d Wrappers/Python ] && bash "$script_path/python.sh"

exit 0