forked from bblanchon/ArduinoJson
11 lines
191 B
Bash
Executable File
11 lines
191 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
export CC="$_CC"
|
|
export CXX="$_CXX"
|
|
|
|
[ -n "$SANITIZE" ] && export CXXFLAGS="-fsanitize=$SANITIZE"
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug .
|
|
cmake --build .
|
|
ctest --output-on-failure .
|