File: docker-build.sh

package info (click to toggle)
thunderbolt-tools 0.9.3-8
  • links: PTS
  • area: main
  • in suites: forky
  • size: 412 kB
  • sloc: cpp: 905; python: 366; sh: 81; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 192 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# Exit on error
set -e
# Print executed commands
set -x

echo "Building in " `pwd`

rm -rf build && mkdir build
cd build && cmake .. && cmake --build .

LC_ALL=C.UTF-8 make check