6 lines
68 B
Bash
Executable file
6 lines
68 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
cd host
|
|
cmake -B build
|
|
cmake --build build
|
|
cd ..
|