mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
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 .
|