mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-14 18:46:59 +00:00
11 lines
191 B
Bash
11 lines
191 B
Bash
#!/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 .
|