11 lines
103 B
Bash
11 lines
103 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
cmake . -B target/debug -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
cmake --build target/debug
|
|
|
|
|
|
|